:root {
	--jw-black: #000;
	--jw-white: #fff;
	--jw-smoke: #f2f2f2;
	--jw-line: #d9d9d9;
	--jw-gray: #989aa0;
	--jw-text: #111;
	--jw-max: 1290px;
	--jw-side: clamp(15px, 4vw, 40px);
}

@font-face {
	font-family: Gilroy;
	src: url("https://cdn.prod.website-files.com/6523ec1cddd1fb9b58e76b07/66bdc280338f1b2857f5440a_gilroy-regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: Gilroy;
	src: url("https://cdn.prod.website-files.com/6523ec1cddd1fb9b58e76b07/66bdc2805803a59a13bde984_gilroy-semibold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: Gilroy;
	src: url("https://cdn.prod.website-files.com/6523ec1cddd1fb9b58e76b07/66bdc28096100d29b946fb87_gilroy-bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.jager-site {
	margin: 0;
	color: var(--jw-text);
	background: var(--jw-white);
	font-family: Gilroy, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.35;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

.jw-wrapper {
	width: min(100%, var(--jw-max));
	margin: 0 auto;
	padding: 0 var(--jw-side);
}

.jw-wrapper--narrow {
	max-width: 920px;
}

.jw-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: var(--jw-white);
	border-bottom: 1px solid var(--jw-smoke);
}

body.jager-site.admin-bar .jw-header {
	top: 32px;
}

.jw-header__inner {
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	align-items: center;
	gap: clamp(16px, 3vw, 48px);
	width: min(100%, var(--jw-max));
	min-height: 100px;
	margin: 0 auto;
	padding: 8px var(--jw-side);
}

.jw-logo {
	display: block;
	width: 99px;
	height: 66px;
	color: var(--jw-black);
}

.jw-logo svg {
	width: 100%;
	height: 100%;
}

.jw-burger {
	display: none;
	width: 78px;
	height: 78px;
	padding: 0 18px;
	background: transparent;
	border: 0;
}

.jw-burger span {
	display: block;
	width: 42px;
	height: 3px;
	margin: 7px 0;
	background: var(--jw-black);
	transition: transform .25s ease, opacity .25s ease;
}

.jw-burger.is-open span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

.jw-burger.is-open span:nth-child(2) {
	opacity: 0;
}

.jw-burger.is-open span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

.jw-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(24px, 5vw, 80px);
}

.jw-nav__list,
.jw-footer__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(18px, 3vw, 38px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.jw-nav__list a {
	display: block;
	padding: 12px 0;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.jw-nav__list a:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.jw-nav__meta {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.jw-find {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.jw-pin {
	width: 14px;
	height: 18px;
	background: var(--jw-black);
	clip-path: polygon(50% 100%, 12% 54%, 8% 32%, 20% 12%, 50% 0, 80% 12%, 92% 32%, 88% 54%);
}

.jw-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
}

.jw-login {
	width: 24px;
	height: 24px;
	border: 2px solid var(--jw-black);
	border-radius: 50%;
	position: relative;
}

.jw-login::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -8px;
	width: 28px;
	height: 12px;
	border: 2px solid var(--jw-black);
	border-top: 0;
	border-radius: 0 0 16px 16px;
	transform: translateX(-50%);
}

.jw-cart-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
}

.jw-cart-link__icon {
	width: 42px;
	height: 42px;
	background: var(--jw-black);
	clip-path: polygon(17% 30%, 83% 30%, 74% 82%, 26% 82%);
}

.jw-cart-link__icon::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 21px;
	width: 16px;
	height: 13px;
	border: 3px solid var(--jw-black);
	border-bottom: 0;
	border-radius: 20px 20px 0 0;
}

.jw-cart-link__count {
	position: absolute;
	right: 0;
	top: 3px;
	display: grid;
	place-items: center;
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	color: var(--jw-white);
	background: var(--jw-black);
	border-radius: 99px;
	font-size: 12px;
	font-weight: 700;
}

.jw-age {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	padding: 20px;
	background: rgba(255, 255, 255, .94);
}

.jw-age[hidden] {
	display: none;
}

.jw-age__modal {
	width: min(100%, 560px);
	padding: clamp(30px, 6vw, 60px);
	background: var(--jw-white);
	border: 1px solid var(--jw-black);
	box-shadow: 0 20px 70px rgba(0, 0, 0, .15);
	text-align: center;
}

.jw-age__modal p {
	margin: 0 0 28px;
	font-size: 18px;
}

.jw-age__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
}

.jw-button,
.button,
button.button,
input.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	color: var(--jw-white);
	background: var(--jw-black);
	border: 1px solid var(--jw-black);
	border-radius: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-transform: lowercase;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}

.jw-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	color: var(--jw-black);
	background: var(--jw-white);
}

.jw-button--light {
	color: var(--jw-black);
	background: var(--jw-white);
}

.jw-button--light:hover {
	color: var(--jw-white);
	background: var(--jw-black);
}

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

.jw-hero {
	padding: 3px 0 0;
}

.jw-hero__slider {
	position: relative;
	aspect-ratio: 1030 / 388;
	overflow: hidden;
	background: var(--jw-smoke);
}

.jw-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity .7s ease;
}

.jw-hero__image.is-active {
	opacity: 1;
}

.jw-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.jw-hero__dots span {
	width: 12px;
	height: 12px;
	background: var(--jw-gray);
	border-radius: 50%;
}

.jw-hero__dots span.is-active {
	background: var(--jw-black);
}

.jw-section {
	padding: clamp(40px, 7vw, 100px) 0 0;
}

.jw-hero + .jw-section {
	padding-top: clamp(22px, 4vw, 42px);
}

.jw-section--page,
.jw-section--shop {
	padding-bottom: clamp(50px, 8vw, 100px);
}

.jw-section__title,
.woocommerce-products-header__title,
.jw-page__title {
	margin: 0 0 32px;
	font-size: clamp(30px, 5vw, 48px);
	font-weight: 700;
	line-height: 1.05;
	text-transform: uppercase;
}

.jw-fallback-grid,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jw-fallback-grid--boxes {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	float: none;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
	float: none;
	width: auto !important;
	margin: 0 !important;
	clear: none !important;
}

.jw-product-card,
.woocommerce ul.products li.product .jw-product-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 20px;
	background: var(--jw-white);
	border: 1px solid var(--jw-smoke);
}

.woocommerce ul.products li.product .jw-product-card {
	width: 100%;
}

.jw-product-card__image {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	margin-bottom: 18px;
	overflow: hidden;
	background: var(--jw-smoke);
}

.jw-product-card__img,
.jw-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.jw-product-card:hover .jw-product-card__img,
.jw-product-card:hover .jw-product-card__image img {
	transform: scale(1.035);
}

.jw-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: flex-start;
	gap: 20px;
}

.jw-product-card__title {
	margin: 0 0 10px;
	font-size: clamp(26px, 2.6vw, 36px);
	font-weight: 700;
	line-height: .95;
	text-transform: uppercase;
}

.jw-product-card__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: #222;
	font-size: 18px;
}

.jw-product-card__meta p {
	margin: 0;
}

.jw-product-card__buy {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 18px;
	margin-top: auto;
}

.jw-product-card__meta:empty {
	display: none;
}

.jw-product-card--no-meta .jw-product-card__buy {
	margin-top: 0;
}

.jw-product-card__price,
.woocommerce ul.products li.product .price {
	color: var(--jw-black);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	line-height: 1;
}

.jw-card-cart {
	display: contents;
}

.jw-qty {
	width: 70px;
	height: 43px;
	margin: 0;
	padding: 7px 8px 7px 11px;
	background: var(--jw-white);
	border: 1px solid var(--jw-black);
	border-radius: 0;
	color: var(--jw-black);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.jw-product-card__price ins,
.woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

.jw-product-card__price del,
.woocommerce ul.products li.product .price del {
	display: block;
	font-size: 16px;
	opacity: .45;
}

.jw-button--cart,
.woocommerce ul.products li.product a.button {
	min-width: 120px;
}

.woocommerce-result-count,
.woocommerce-ordering {
	margin-bottom: 28px;
}

.woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.input-text,
select,
textarea {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	background: var(--jw-white);
	border: 1px solid var(--jw-line);
	border-radius: 0;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
	gap: clamp(28px, 6vw, 80px);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
}

.woocommerce div.product .product_title {
	margin-top: 0;
	font-size: clamp(38px, 7vw, 72px);
	line-height: .95;
	text-transform: uppercase;
}

.woocommerce div.product .summary {
	padding-top: clamp(10px, 4vw, 48px);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--jw-black);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 700;
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 32px;
}

.woocommerce div.product form.cart .button {
	min-width: 150px;
	height: 48px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	max-width: 520px;
	font-size: 18px;
	line-height: 1.45;
}

.woocommerce div.product .woocommerce-tabs {
	display: none;
}

.woocommerce .quantity .qty {
	width: 70px;
	min-height: 48px;
	border: 1px solid var(--jw-black);
	font-weight: 700;
	text-align: center;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--jw-black);
	background: var(--jw-smoke);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--jw-black);
}

.woocommerce-cart table.cart img {
	width: 90px;
}

.woocommerce-cart .jw-page__title,
.woocommerce-cart h1,
.woocommerce-checkout h1,
.woocommerce-account h1 {
	text-transform: uppercase;
}

.woocommerce .cart-empty {
	margin: 20px 0 28px;
	padding: 28px;
	background: var(--jw-smoke);
	border-top: 0;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
}

.woocommerce .return-to-shop {
	margin-bottom: 40px;
}

.woocommerce .products li.product .button {
	margin-top: 16px;
}

.woocommerce table.shop_table {
	border-radius: 0;
}

.woocommerce table.shop_table,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: var(--jw-line);
}

.woocommerce table.shop_table th {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.woocommerce table.shop_table td {
	font-size: 16px;
}

.woocommerce-cart-form,
.woocommerce-checkout {
	margin-top: 24px;
}

.woocommerce-cart-form table.shop_table {
	border: 0;
}

.woocommerce-cart-form table.shop_table tr {
	border-bottom: 1px solid var(--jw-line);
}

.woocommerce-cart-form table.shop_table td {
	padding: 18px 12px;
}

.woocommerce-cart-form .product-remove .remove {
	color: var(--jw-black) !important;
	font-size: 26px;
}

.woocommerce-cart-form .product-remove .remove:hover {
	background: var(--jw-black);
	color: var(--jw-white) !important;
}

.woocommerce-cart-form .product-name a {
	font-weight: 700;
	text-transform: uppercase;
}

.woocommerce-cart-form .actions .coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.woocommerce-cart-form .actions .coupon .input-text {
	min-width: min(100%, 280px);
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: min(100%, 520px);
	margin-left: auto;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
	margin: 0 0 18px;
	font-size: 30px;
	text-transform: uppercase;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	width: 100%;
	min-height: 54px;
	margin-bottom: 0;
	font-size: 16px;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review {
	margin-bottom: 32px;
}

.woocommerce-checkout h3 {
	text-transform: uppercase;
}

.woocommerce-checkout-review-order-table .product-name {
	font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: inline-flex;
	padding: 12px 16px;
	border: 1px solid var(--jw-black);
	font-weight: 700;
	text-transform: uppercase;
}

.jw-page__content {
	font-size: 18px;
}

.jw-footer {
	margin-top: clamp(60px, 8vw, 120px);
	background: var(--jw-white);
}

.jw-footer__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 8vw, 120px);
	padding: clamp(48px, 8vw, 90px) 0 36px;
	border-top: 1px solid var(--jw-smoke);
}

.jw-footer h3 {
	margin: 0 0 28px;
	font-size: clamp(26px, 3vw, 30px);
	text-transform: uppercase;
}

.jw-footer__addresses,
.jw-footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 18px;
}

.jw-footer__addresses p {
	margin: 0;
}

.jw-pay {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 128px;
	min-height: 38px;
	margin-top: 28px;
	padding: 0 16px;
	border: 1px solid var(--jw-line);
	font-weight: 700;
}

.jw-footer__socials {
	display: flex;
	gap: 18px;
	margin-bottom: 12px;
	text-transform: uppercase;
	font-weight: 700;
}

.jw-footer__warning {
	padding: 22px 0 38px;
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 700;
	text-transform: uppercase;
}

.jw-footer__bottom {
	padding: 36px 0 42px;
	background: var(--jw-black);
	color: var(--jw-white);
}

.jw-footer__bottom h2 {
	margin: 0 0 28px;
	font-size: clamp(24px, 3vw, 30px);
	text-transform: uppercase;
}

.jw-footer__links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: 18px 40px;
	margin-bottom: 34px;
}

.jw-footer__links a:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.jw-copy {
	text-align: center;
	font-weight: 600;
}

@media (max-width: 1100px) {
	.jw-header__inner {
		grid-template-columns: auto auto 1fr;
	}

	.jw-burger {
		display: block;
	}

	.jw-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: center;
		gap: 34px;
		padding: 28px var(--jw-side) 40px;
		background: var(--jw-white);
		border-bottom: 1px solid var(--jw-smoke);
	}

	.jw-nav.is-open {
		display: flex;
	}

	.jw-nav__list {
		flex-direction: column;
		gap: 10px;
	}

	.jw-header__actions {
		grid-column: 3;
		justify-self: end;
	}

	.jw-fallback-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jw-fallback-grid--boxes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce div.product {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	body.jager-site {
		font-size: 15px;
	}

	body.jager-site.admin-bar .jw-header {
		top: 0;
	}

	.jw-header__inner {
		min-height: 90px;
		gap: 12px;
	}

	.jw-burger {
		width: 60px;
		height: 60px;
		padding-left: 0;
	}

	.jw-burger span {
		width: 34px;
	}

	.jw-logo {
		width: 86px;
		height: 57px;
	}

	.jw-login {
		display: none;
	}

	.jw-cart-link {
		width: 48px;
		height: 48px;
	}

	.jw-hero {
		padding-top: 12px;
	}

	.jw-hero__slider {
		aspect-ratio: 320 / 430;
		max-height: calc(100vh - 120px);
	}

	.jw-hero__dots span {
		width: 8px;
		height: 8px;
	}

	.jw-fallback-grid,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.jw-hero + .jw-section {
		padding-top: 24px;
	}

	.jw-product-card {
		padding: 10px 8px 18px;
	}

	.jw-product-card__buy {
		justify-content: center;
	}

	.jw-footer__top {
		grid-template-columns: 1fr;
	}

	.jw-footer__links {
		display: flex;
		flex-direction: column;
	}
}

@media (max-width: 479px) {
	.jw-nav__meta {
		flex-wrap: wrap;
		justify-content: center;
	}

	.jw-product-card__title {
		font-size: 27px;
	}

	.jw-product-card__meta {
		font-size: 17px;
	}
}
