.mwc-drawer {
	position: fixed;
	inset: 0;
	z-index: 99999;
	pointer-events: none;
	visibility: hidden;
}

.mwc-drawer.is-open {
	pointer-events: auto;
	visibility: visible;
}

.mwc-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(41, 26, 20, 0.4);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.mwc-drawer.is-open .mwc-drawer__overlay {
	opacity: 1;
}

.mwc-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(568px, 100vw);
	height: 100%;
	background: var(--light);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.5s ease;
	overflow: hidden;
}

.mwc-drawer.is-open .mwc-drawer__panel {
	transform: translateX(0);
}

.mwc-drawer__inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

.mwc-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	background: var(--second);
	flex-shrink: 0;
}

.mwc-drawer__title {
	font-family: 'Work Sans';
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--default);
	text-transform: uppercase;
}

.mwc-drawer__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--default);
	cursor: pointer;
}

.mwc-drawer__scroll {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
}

.mwc-drawer__content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: var(--light);
}

.mwc-drawer__items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mwc-item {
	display: grid;
	grid-template-columns: 100px 1fr auto;
	gap: 16px 29px;
	padding: 16px;
	background: #fff;
	align-items: start;
}

.mwc-item__thumb {
	display: block;
	width: 100px;
	height: 150px;
	overflow: hidden;
	flex-shrink: 0;
}

.mwc-item__thumb img,
.mwc-item__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mwc-item__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
	min-height: 150px;
}

.mwc-item__name {
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	color: #393434;
	word-break: break-word;
}

.mwc-item__name a {
	color: inherit;
	text-decoration: none;
}

.mwc-item__name a:hover {
	color: var(--default);
}

.mwc-item__name dl,
.mwc-item__name ul {
	margin: 4px 0 0;
	padding: 0;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.4;
	color: #7f7f7f;
}

.mwc-item__price {
	font-size: 14px;
	line-height: 1.4;
}

.mwc-price--sale {
	color: var(--default);
	font-weight: 500;
}

.mwc-price--regular {
    color: #7F7F7F;
    font-weight: 300;
    text-decoration: line-through;
}

.mwc-item__qty {
	display: flex;
	align-items: stretch;
	width: 92px;
	height: 36px;
	margin-top: auto;
	border: 1px solid #c3c2c2;
	background: #fff;
}

.mwc-item__qty-btn {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #393434;
	font-size: 14px;
	line-height: 1.5;
	cursor: pointer;
}

.mwc-item__qty-input {
	flex: 1;
	width: 100%;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	outline: none;
	color: #393434;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
}

.mwc-drawer .mwc-item__qty input.mwc-item__qty-input[type="number"] {
	display: block;
	flex: 1;
	width: 100%;
	min-width: 0;
	height: 100% !important;
	margin: 0;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none;
	color: #393434;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

.mwc-item__qty-input::-webkit-outer-spin-button,
.mwc-item__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.mwc-item__qty-input:focus {
	outline: none;
}

.mwc-item__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--light);
    color: var(--default);
    cursor: pointer;
    align-self: start;
}

.mwc-drawer__coupon {
    display: flex;
    align-items: center;
    min-height: 66px;
    padding: 10px;
    background: #fff;
    flex-shrink: 0;
    margin: 12px 0;
}

.mwc-coupon-form {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 37px;
}

.mwc-coupon-form__field {
	flex: 1;
	min-width: 0;
	max-width: 386px;
}

.mwc-coupon-form__input {
	display: block;
	width: 100%;
	height: 45px;
	margin: 0;
	padding: 0 16px;
	border: 1px solid #d9d9d9;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	outline: none;
	color: #393434;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.mwc-coupon-form__input::placeholder {
	color: #7f7f7f;
	opacity: 1;
}

.mwc-drawer .mwc-coupon-form input.mwc-coupon-form__input[type="text"] {
	display: block;
	width: 100%;
	height: 45px !important;
	margin: 0;
	padding: 0 16px !important;
	border: 1px solid #d9d9d9 !important;
	border-radius: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
	outline: none;
	color: #393434;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.mwc-drawer .mwc-coupon-form input.mwc-coupon-form__input[type="text"]::placeholder {
	color: #7f7f7f;
	opacity: 1;
}

.mwc-coupon-form__link {
	flex-shrink: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-transform: uppercase;
	color: #393434;
	cursor: pointer;
}

.mwc-cross-sells {
	padding: 24px 20px;
	background: #f4e7db;
	flex-shrink: 0;
}

.mwc-cross-sells .page-title-content {
	margin-bottom: 25px;
}

.mwc-cross-sells__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mwc-cross {
	display: grid;
	grid-template-columns: 99px 1fr;
	gap: 16px;
	padding: 16px;
	background: #fff;
}

.mwc-cross__thumb {
	display: block;
	width: 99px;
	height: 152px;
	overflow: hidden;
}

.mwc-cross__thumb img, .mwc-cross__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mwc-cross__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
	min-height: 152px;
	padding-top: 3px;
}

.mwc-cross__name {
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	color: #393434;
	text-decoration: none;
}

.mwc-cross__price {
	font-size: 14px;
	font-weight: 500;
	color: var(--default);
}


.mwc-cross__add {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	min-height: 31px;
	margin: 0;
	margin-top: auto;
	padding: 6px 16px;
	border: 1px solid var(--default);
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	font-family: inherit;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: #393434;
	cursor: pointer;
	box-sizing: border-box;
	transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.mwc-cross__add:hover, .mwc-cross__add:focus {
	background: var(--default);
	border-color: var(--default);
	color: #fff;
	text-decoration: none;
}

.mwc-drawer .mwc-cross button.mwc-cross__add {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	width: auto !important;
	min-height: 31px;
	margin: 0;
	margin-top: auto;
	padding: 6px 16px !important;
	border: 1px solid var(--default) !important;
	border-radius: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
	font-family: inherit;
	font-size: 12px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	text-transform: uppercase;
	color: #393434 !important;
	transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.mwc-drawer .mwc-cross button.mwc-cross__add:hover, .mwc-drawer .mwc-cross button.mwc-cross__add:focus {
	background: var(--default) !important;
	border-color: var(--default) !important;
	color: #fff !important;
}

.mwc-drawer__footer {
	padding: 30px 20px;
	background: var(--light);
	border-top: 1px solid var(--gray);
	flex-shrink: 0;
}

.mwc-drawer__subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.mwc-drawer__subtotal-label, .mwc-drawer__subtotal-value {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: #393434;
}

.mwc-drawer__shipping-notice {
	margin: 0 0 16px;
	font-size: 14px;
	text-align: center;
	color: #393434;
}

.mwc-drawer__checkout {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 12px 24px;
	border: 1px solid var(--default);
	border-radius: 0;
	background: var(--default);
	box-shadow: none;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2.4px;
	color: #fff;
	cursor: pointer;
	box-sizing: border-box;
	transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.mwc-drawer .mwc-drawer__footer a.button.mwc-drawer__checkout {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	min-height: 48px;
	margin: 0;
	padding: 12px 24px !important;
	border: 1px solid var(--default) !important;
	border-radius: 0 !important;
	background: var(--default) !important;
	box-shadow: none !important;
	font-family: inherit;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 2.4px;
	color: #fff !important;
	transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.mwc-drawer .mwc-drawer__footer a.button.mwc-drawer__checkout:hover, .mwc-drawer .mwc-drawer__footer a.button.mwc-drawer__checkout:focus {
	background: var(--second) !important;
	border-color: var(--second) !important;
	color: var(--default) !important;
}

.mwc-drawer__empty {
	padding: 40px 20px;
	text-align: center;
	flex: 1;
}

.mwc-drawer__panel::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 5;
	background: rgba(41, 26, 20, 0.15);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.mwc-drawer.is-loading .mwc-drawer__panel {
	cursor: wait;
}

.mwc-drawer.is-loading .mwc-drawer__panel::after {
	opacity: 1;
	pointer-events: auto;
}

.mwc-floater {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 99990;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--default);
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(41, 26, 20, 0.25);
}

.mwc-floater svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.mwc-floater__count, [data-mwc-count] {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 50%;
	background: var(--default);
	color: #fff;
	font-size: 11px;
	line-height: 18px;
	text-align: center;
}

[data-mwc-count]:empty, [data-mwc-count][data-count="0"] {
	display: none;
}

@media (max-width: 480px) {
	.mwc-floater {
		right: 16px;
		bottom: 16px;
	}

	.mwc-drawer__panel {
		width: 100vw;
	}

	.mwc-item {
		grid-template-columns: 80px 1fr auto;
	}

	.mwc-item__thumb {
		width: 80px;
		height: 120px;
	}

	.mwc-item__body {
		min-height: 120px;
	}
}
