/* Mini cart */
.komilfo-mini-cart {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	font-family: 'Roboto', Arial, sans-serif;
}

.komilfo-mini-cart.is-open {
	display: block;
}

body.komilfo-cart-open {
	overflow: hidden;
}

.komilfo-mini-cart__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .48);
	backdrop-filter: blur(2px);
}

.komilfo-mini-cart__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(480px, 100%);
	height: 100%;
	background: #fff;
	box-shadow: -24px 0 48px rgba(0, 0, 0, .2);
	border-left: 1px solid rgba(185, 105, 221, .16);
}

.komilfo-mini-cart__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: #000;
	color: #fff;
	border-bottom: 1px solid rgba(185, 105, 221, .18);
}

.komilfo-mini-cart__header h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.komilfo-mini-cart__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 1.35rem;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.komilfo-mini-cart__close:hover {
	background: rgba(185, 105, 221, .24);
	transform: translateY(-1px);
}

.komilfo-mini-cart__body {
	flex: 1;
	overflow: auto;
	padding: 1rem 1.1rem 1.15rem;
	background: linear-gradient(180deg, #fff 0%, #fff 70%, #faf7fc 100%);
}

.komilfo-mini-cart__items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: .75rem;
}

.komilfo-mini-cart__item {
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: .9rem;
	padding: .85rem;
	background: #fff;
	border: 1px solid #f0e6f6;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
	position: relative;
}

.komilfo-mini-cart__thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	background: #fafafa;
	border-radius: 12px;
	overflow: hidden;
}

.komilfo-mini-cart__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.komilfo-mini-cart__name {
	display: block;
	margin: 0 1.9rem .45rem 0;
	font-size: .92rem;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	color: #111;
}

.komilfo-mini-cart__name:hover {
	color: #b969dd;
}

.komilfo-mini-cart__meta {
	display: flex;
	align-items: center;
	gap: .75rem;
	flex-wrap: wrap;
}

.komilfo-qty {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.komilfo-qty__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid #e4d8ea;
	background: #fff;
	color: #111;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.komilfo-qty__btn:hover {
	background: #f7eefb;
	border-color: #d4b0e9;
	color: #9a4fc4;
	transform: translateY(-1px);
}

.komilfo-qty__btn--minus {
	border-radius: 10px 0 0 10px;
}

.komilfo-qty__btn--plus {
	border-radius: 0 10px 10px 0;
}

.komilfo-qty__input {
	width: 56px;
	height: 34px;
	padding: 0;
	border: 0px solid #e4d8ea;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
	background: #fff;
	color: #111;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
}

.komilfo-qty__input::-webkit-outer-spin-button,
.komilfo-qty__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.komilfo-qty--mini .komilfo-qty__btn,
.komilfo-qty--mini .komilfo-qty__input {
	width: 32px;
	height: 32px;
}

.komilfo-qty--mini .komilfo-qty__input {
	width: 44px;
}

.komilfo-mini-cart__qty {
	appearance: textfield;
}

.komilfo-mini-cart__price {
	font-size: .95rem;
	font-weight: 700;
	color: #000;
}

.komilfo-mini-cart__remove {
	position: absolute;
	top: .7rem;
	right: .7rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 999px;
	background: #f6edf9;
	color: #b969dd;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}

.komilfo-mini-cart__remove:hover {
	background: #b969dd;
	color: #fff;
	transform: translateY(-1px);
}

.komilfo-mini-cart__footer {
	display: grid;
	gap: .7rem;
	padding: 1rem 1.1rem 1.15rem;
	border-top: 1px solid #f0e6f6;
	background: #fff;
}

.komilfo-mini-cart__subtotal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: .7rem .9rem;
	background: #faf7fc;
	border: 1px solid #f0e6f6;
	border-radius: 12px;
	font-size: .95rem;
	color: #111;
}

.komilfo-mini-cart__subtotal strong {
	font-weight: 700;
}

.komilfo-mini-cart__checkout,
.komilfo-mini-cart__view-cart {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 46px !important;
	box-sizing: border-box !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	text-transform: uppercase !important;
	letter-spacing: .05em !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
}

.komilfo-mini-cart__checkout {
	background: #000 !important;
	color: #fff !important;
	border: 1px solid #000 !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.komilfo-mini-cart__checkout:hover {
	background: #b969dd !important;
	border-color: #b969dd !important;
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(185, 105, 221, 0.3) !important;
	transform: translateY(-1px) !important;
}

.komilfo-mini-cart__view-cart {
	background: #fff !important;
	color: #222 !important;
	border: 1px solid #ddd !important;
}

.komilfo-mini-cart__view-cart:hover {
	background: #fafafa !important;
	color: #b969dd !important;
	border-color: #b969dd !important;
	transform: translateY(-1px) !important;
}

.komilfo-mini-cart__empty {
	margin: 0;
	padding: 2.5rem 1rem;
	text-align: center;
	color: #666;
}

/* WooCommerce notices */
.woocommerce .woocommerce-notices-wrapper {
	margin-bottom: 1rem;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	display: none !important;
	content: none !important;
}

.checkout-button.disable-checkout-btn,
.checkout-button.disable-checkout-btn:hover,
.woocommerce-cart-wrap .checkout-button.disable-checkout-btn,
.woocommerce-cart-wrap .checkout-button.disable-checkout-btn:hover,
.checkout-button.disable,
.checkout-button.disable:hover,
.woocommerce-cart-wrap .checkout-button.disable,
.woocommerce-cart-wrap .checkout-button.disable:hover {
	background: #bfbfbf !important;
	background-color: #bfbfbf !important;
	color: #ffffff !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
	transform: none !important;
	box-shadow: none !important;
}

.woocommerce-message {
	display: flex;
	align-items: center;
	gap: .9rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(60, 155, 87, .18);
	border-radius: 16px;
	background: linear-gradient(180deg, #f5fbf6 0%, #ffffff 100%);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
	text-align: left;
	color: #1e1e1e;
}

.woocommerce-message__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: #3c9b57;
	color: #fff;
	font-size: 16px;
	box-shadow: 0 8px 16px rgba(60, 155, 87, .22);
}

.woocommerce-message__content {
	flex: 1 1 auto;
	min-width: 0;
}

.woocommerce-message__title {
	margin: 1px 0 .35rem;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: #0f0f0f;
}

.woocommerce-message-text {
	font-size: 13px;
	line-height: 1.45;
	color: #444;
}

.woocommerce-message-text a,
.woocommerce-message .button.wc-forward {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	margin: .65rem .5rem 0 0;
	padding: 0 14px;
	border-radius: 10px !important;
	background: #000 !important;
	color: #fff !important;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: .02em;
	box-shadow: 0 10px 18px rgba(0, 0, 0, .12);
}

.woocommerce-message-text a:hover,
.woocommerce-message .button.wc-forward:hover {
	background: #191919 !important;
	color: #fff !important;
}

.woocommerce-message-text a {
	margin-left: .3rem;
}

/* Error Notice */
.woocommerce-error {
	display: flex;
	align-items: center;
	gap: .9rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(238, 80, 80, .18);
	border-radius: 16px;
	background: linear-gradient(180deg, #fffcfc 0%, #ffffff 100%) !important;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
	text-align: left;
	color: #1e1e1e;
	margin: 0 0 1.5rem;
}

.woocommerce-error__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: #ee5050;
	color: #fff;
	font-size: 16px;
	box-shadow: 0 8px 16px rgba(238, 80, 80, .22);
}

.woocommerce-error__content {
	flex: 1 1 auto;
	min-width: 0;
}

.woocommerce-error-text {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	line-height: 1.45;
	color: #444;
}

.woocommerce-error-text li {
	margin-bottom: 0.25rem;
}

.woocommerce-error-text li:last-child {
	margin-bottom: 0;
}

/* Info Notice */
.woocommerce-info {
	display: flex;
	align-items: flex-start;
	gap: .9rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(185, 105, 221, .18) !important;
	border-left: 4px solid #b969dd !important;
	border-radius: 16px;
	background: linear-gradient(180deg, #fcf9fe 0%, #ffffff 100%) !important;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
	text-align: left;
	color: #1e1e1e;
	margin: 0 0 1.5rem;
}

.woocommerce-info__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 23px;
	height: 23px;
	border-radius: 999px;
	background: #b969dd;
	color: #fff;
	font-size: 16px;
	box-shadow: 0 8px 16px rgba(185, 105, 221, .22);
}

.woocommerce-info__content {
	flex: 1 1 auto;
	min-width: 0;
}

.woocommerce-info-text {
	font-size: 13px;
	line-height: 1.45;
	color: #444;
}

/* Close Message */
.woocommerce-message .close-message,
.woocommerce-error .close-message,
.woocommerce-info .close-message {
	position: relative;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	margin-left: .4rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, .04);
	cursor: pointer;
}

.woocommerce-message .close-message::before,
.woocommerce-message .close-message::after,
.woocommerce-error .close-message::before,
.woocommerce-error .close-message::after,
.woocommerce-info .close-message::before,
.woocommerce-info .close-message::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 1.5px;
	background: #666;
	transform-origin: center;
}

.woocommerce-message .close-message::before,
.woocommerce-error .close-message::before,
.woocommerce-info .close-message::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.woocommerce-message .close-message::after,
.woocommerce-error .close-message::after,
.woocommerce-info .close-message::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 767px) {

	.woocommerce-message,
	.woocommerce-error,
	.woocommerce-info {
		align-items: flex-start;
		padding: .9rem;
		gap: .75rem;
		border-radius: 14px;
	}

	.woocommerce-message-text a,
	.woocommerce-message .button.wc-forward {
		width: 100%;
		margin: .75rem 0 0;
	}
}

/* Search */
.komilfo-search-form {
	position: relative;
	display: flex;
	width: 100%;
	max-width: 100%;
}

.komilfo-search-form__input {
	flex: 1;
	padding: .55rem .75rem;
	border: 1px solid #ddd;
}

.komilfo-search-form__submit {
	border: 1px solid #ddd;
	border-left: 0;
	background: #000;
	color: #fff;
	padding: 0 .9rem;
	cursor: pointer;
}

.komilfo-search-form__results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #ddd;
	border-top: 0;
	max-height: 360px;
	overflow: auto;
	z-index: 50;
}

.komilfo-search-form__results a {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: .5rem;
	padding: .5rem .75rem;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid #f3f3f3;
}

.komilfo-search-form__results a:hover {
	background: #fafafa;
}

.komilfo-search-form__results img {
	width: 48px;
	height: 48px;
	object-fit: cover;
}

/* Product card actions */
.komilfo-product-card__media {
	position: relative;
	margin-bottom: .85rem;
}

.komilfo-product-card__media .komilfo-product-card__image {
	display: block;
	margin-bottom: 0;
	overflow: hidden;
	display: flex;
	justify-content: center;
	position: relative !important;
}

.komilfo-product-card__media .komilfo-product-card__image img,
.komilfo-related__slide .komilfo-product-card__image img {
	transition: opacity 0.4s ease-in-out, transform 0.5s ease !important;
}

.komilfo-product-card__media .komilfo-product-card__image .secondary-image,
.komilfo-related__slide .komilfo-product-card__image .secondary-image {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	opacity: 0 !important;
	z-index: 1 !important;
	transition: opacity 0.4s ease-in-out, transform 0.5s ease !important;
}

@media (min-width: 992px) {

	.komilfo-product-card:hover .komilfo-product-card__image img,
	.komilfo-related__slide:hover .komilfo-product-card__image img {
		transform: scale(1.05) !important;
	}

	.komilfo-product-card:hover .komilfo-product-card__image .secondary-image,
	.komilfo-related__slide:hover .komilfo-product-card__image .secondary-image {
		opacity: 1 !important;
		transform: scale(1.05) !important;
	}
}

.komilfo-product-card__wishlist {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 5;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease;
}

.komilfo-product-card:hover .komilfo-product-card__wishlist,
.komilfo-product-card:focus-within .komilfo-product-card__wishlist,
.komilfo-product-card__wishlist:has(.is-added) {
	opacity: 1;
	transform: translateY(0);
}

.komilfo-wishlist-link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff !important;
	color: #000 !important;
	box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
	font-size: 22px;
	line-height: 1;
	text-decoration: none !important;
	transition: color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.komilfo-wishlist-link:hover,
.komilfo-wishlist-link.is-added {
	color: #b969dd !important;
	transform: translateY(-1px);
	box-shadow: 0 15px 30px rgba(185, 105, 221, .22);
}

.komilfo-wishlist-link.is-loading {
	pointer-events: none;
	opacity: .65;
}

.komilfo-wishlist-link i {
	display: block !important;
	color: currentColor !important;
	font-size: 22px !important;
	line-height: 1 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.komilfo-wishlist-link::before,
.komilfo-wishlist-link::after {
	content: none !important;
	display: none !important;
}

.komilfo-product-card--archive .button,
.komilfo-product-card--archive .add_to_cart_button,
.komilfo-related__slide .add_to_cart_button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	width: 100%;
	margin: auto 0 0;
	padding: 10px 14px;
	border: 0;
	border-radius: 10px !important;
	background: #000 !important;
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .02em;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: none !important;
	transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.komilfo-product-card--archive .button:hover,
.komilfo-product-card--archive .add_to_cart_button:hover,
.komilfo-related__slide .add_to_cart_button:hover {
	background: #b969dd !important;
	color: #fff !important;
}

.komilfo-product-card--archive .button.loading,
.komilfo-product-card--archive .add_to_cart_button.loading,
.komilfo-related__slide .add_to_cart_button.loading {
	opacity: .8;
	pointer-events: none;
}

.komilfo-product-card .added_to_cart.wc-forward,
.komilfo-product-card--archive .added_to_cart.wc-forward,
.komilfo-related__slide .added_to_cart.wc-forward {
	display: none !important;
}

.komilfo-product-card .button.added,
.komilfo-product-card .button.is-added,
.komilfo-product-card--archive .button.added,
.komilfo-product-card--archive .button.is-added,
.komilfo-product-card--archive .add_to_cart_button.added,
.komilfo-product-card--archive .add_to_cart_button.is-added {
	background: #000 !important;
	color: #fff !important;
}

.komilfo-product-card .button.added::after,
.komilfo-product-card .button.is-added::after,
.komilfo-product-card--archive .button.added::after,
.komilfo-product-card--archive .button.is-added::after,
.komilfo-product-card--archive .add_to_cart_button.added::after,
.komilfo-product-card--archive .add_to_cart_button.is-added::after {
	content: "\f00c";
	display: inline-block;
	margin-left: 9px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 13px;
	line-height: 1;
}

.widget_premmerce_filter_filter_widget {
	display: none !important;
}


.komilfo-footer {
	background: #000;
	color: #fff;
	padding: 30px 150px 30px 150px;
	margin-top: 48px;
	border-top: 1px solid #1f1f1f;
	font-family: 'Roboto', Arial, sans-serif;
}

.komilfo-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 36px 54px;
	align-items: start;
	max-width: 100%;
}

.komilfo-footer__widgets {
	min-width: 0;
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
	line-height: 1.6;
}

.komilfo-footer__widgets h2,
.komilfo-footer__widgets h3,
.komilfo-footer__widgets h4,
.komilfo-footer__widgets .widget-title {
	margin: 0 0 14px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0;
}

.komilfo-footer__widgets a,
.komilfo-footer-menu a {
	color: rgba(255, 255, 255, .82);
	text-decoration: none;
	transition: color .2s ease;
}

.komilfo-footer__widgets a:hover,
.komilfo-footer-menu a:hover {
	color: #b969dd;
}

.komilfo-footer__columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(120px, 1fr));
	gap: 28px 36px;
}

.komilfo-footer__column {
	display: grid;
	gap: 9px;
	align-content: start;
}

.komilfo-footer__column h4 {
	margin: 0 0 7px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.komilfo-footer__column a,
.komilfo-footer__column span {
	color: rgba(255, 255, 255, .72);
	font-size: 14px;
	line-height: 1.35;
	text-decoration: none;
}

.komilfo-footer__column a:hover {
	color: #b969dd;
}

.komilfo-footer-menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.komilfo-footer-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	text-transform: uppercase;
}

.komilfo-footer__subscribe {
	color: #fff;
	text-align: center;
}

.komilfo-footer__subscribe h4 {
	max-width: 310px;
	margin: 0 auto 14px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

.komilfo-footer__form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0;
	max-width: 320px;
	margin: 0 auto 18px;
	border-bottom: 1px solid #b969dd;
}

.komilfo-footer__form input {
	min-width: 0;
	height: 34px;
	padding: 0 8px 0 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 11px;
	outline: none;
}

.komilfo-footer__form input::placeholder {
	color: rgba(255, 255, 255, .55);
}

.komilfo-footer__form button {
	height: 34px;
	padding: 0 0 0 14px;
	border: 0;
	background: transparent;
	color: #fff;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
}

.komilfo-footer__form button:hover {
	color: #b969dd;
}

.komilfo-footer__socials {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 14px 0 16px;
}

.komilfo-footer__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	color: #000;
	font-size: 12px;
}

.komilfo-footer__socials a:hover {
	background: #b969dd;
	color: #fff;
}

.komilfo-footer__hours {
	margin: 0 0 14px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.komilfo-footer__phone {
	display: block;
	margin: 5px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	transition: color .2s ease;
}

.komilfo-footer__phone span {
	color: rgba(255, 255, 255, .7);
	font-size: 11px;
	font-weight: 400;
}

.emailfooter {
	display: flex;
	justify-content: space-between;
}

.komilfo-footer__email {
	display: block;
	margin: 5px 0;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	transition: color .2s ease;
}

.komilfo-footer__email span {
	color: rgba(255, 255, 255, .7);
	font-size: 11px;
	font-weight: 400;
}

.komilfo-footer__phone:hover,
.komilfo-footer__email:hover {
	color: #b969dd;
}

.komilfo-footer__copy {
	grid-column: 1 / -1;
	max-width: 760px;
	justify-self: center;
	width: 100%;
	padding-top: 18px;
	border-top: 1px solid rgba(185, 105, 221, .4);
	color: rgba(255, 255, 255, .58);
	font-size: 10px;
	line-height: 1.4;
	text-align: center;
}

.komilfo-footer__copy p {
	margin: 0 0 4px;
}

.komilfo-footer__copy strong {
	color: #fff;
	font-size: 10px;
	font-weight: 700;
}

@media (max-width: 1254px) {
	.komilfo-footer {
		padding: 30px 10px 30px 10px
	}
}

@media (max-width: 961px) {
	.komilfo-footer__columns {
		gap: 28px 19px;
	}
}

@media (max-width: 932px) {
	.komilfo-footer__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 767px) {
	.komilfo-footer {
		padding: 32px 0 22px;
		margin-top: 34px;
	}

	.komilfo-footer__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.komilfo-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 22px;
	}

	.komilfo-footer-menu {
		gap: 8px 18px;
	}

	.komilfo-footer__copy {
		margin-top: 24px;
	}
}

@media (max-width: 520px) {
	.komilfo-footer__columns {
		grid-template-columns: 1fr;
	}
}

/* Extra payment & return links in product cards */
.komilfo-product-card__extra-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	font-size: 11px;
	font-family: 'Roboto', Arial, sans-serif;
	text-transform: none;
}

.komilfo-product-card__extra-links a {
	color: #777;
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: 400;
}

.komilfo-product-card__extra-links a:hover {
	color: #b969dd;
}

.komilfo-product-card__extra-links .separator {
	color: #ccc;
	user-select: none;
}

.komilfo-add-to-cart-btn-wrapper {
	display: flex !important;
	flex-direction: column-reverse;
	align-items: center !important;
	flex-grow: 1 !important;
	order: 3 !important;
}

.komilfo-add-to-cart-btn-wrapper .single_add_to_cart_button {
	width: 100% !important;
}

.komilfo-add-to-cart-btn-wrapper .komilfo-product-card__extra-links {
	margin-top: 8px !important;
	justify-content: center !important;
	width: 100% !important;
}

.woocommerce-variation-add-to-cart {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 12px !important;
	align-items: center !important;
	width: 100% !important;
}