body.t3-cart-drawer-open {
	overflow: hidden;
}

.t3-cart-drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 999998;
	background: rgba(0, 0, 0, .38);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

.t3-cart-drawer-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.t3-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	width: min(420px, 100%);
	height: 100dvh;
	max-width: 100vw;
	background: #fff !important;
	color: #111 !important;
	box-shadow: -10px 0 35px rgba(0, 0, 0, .14);
	transform: translateX(105%);
	transition: transform .25s ease;
}

.t3-cart-drawer.is-open {
	transform: translateX(0);
}

.t3-cart-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 68px;
	padding: 16px 20px;
	border-bottom: 1px solid #e9e9e9;
	background: #fff !important;
}

.t3-cart-drawer-title {
	margin: 0 !important;
	padding: 0 !important;
	color: #111;
	font-size: 18px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
}

.t3-cart-drawer button.t3-cart-drawer-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin: 0;
	padding: 0;
	border: 0 !important;
	border-radius: 50% !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #111 !important;
	cursor: pointer;
}

.t3-cart-drawer button.t3-cart-drawer-close:hover {
	background: #f3f3f3 !important;
}

.t3-cart-drawer button.t3-cart-drawer-close svg {
	width: 20px;
	height: 20px;
	fill: none !important;
	stroke: #111 !important;
	stroke-width: 1.7 !important;
}

.t3-cart-drawer-body {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 4px 20px 22px;
	background: #fff !important;
}

.t3-cart-drawer .woocommerce-mini-cart {
	margin: 0;
	padding: 0;
	list-style: none;
}

.t3-cart-drawer .twbb_menu-cart__products {
	margin: 0 !important;
	padding: 0 !important;
}

.t3-cart-drawer .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 14px;
	min-height: 104px;
	margin: 0;
	padding: 18px 30px 18px 0;
	border-bottom: 1px solid #eee;
}

.t3-cart-drawer .twbb_menu-cart__product {
	position: relative;
	display: grid !important;
	grid-template-columns: 76px minmax(0, 1fr) !important;
	grid-template-rows: auto 34px !important;
	gap: 6px 14px !important;
	min-height: 116px;
	margin: 0 !important;
	padding: 18px 30px 18px 0 !important;
	border-bottom: 1px solid #eee !important;
	background: #fff !important;
}

.t3-cart-drawer .twbb_menu-cart__product-image {
	grid-column: 1;
	grid-row: 1 / 3;
}

.t3-cart-drawer .twbb_menu-cart__product-name {
	grid-column: 2;
	grid-row: 1;
	padding: 0 !important;
}

.t3-cart-drawer .twbb_menu-cart__product-name a {
	color: #111 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	text-decoration: none !important;
}

.t3-cart-drawer .twbb_menu-cart__product-price {
	position: absolute;
	right: 0;
	bottom: 24px;
	color: #555 !important;
	font-size: 12px !important;
}

.t3-cart-drawer .twbb_menu-cart__product-remove {
	position: absolute;
	top: 16px;
	right: 0;
	width: 26px;
	height: 26px;
}

.t3-cart-drawer .twbb_menu-cart__product-remove .twbb_remove_from_cart_button {
	display: none !important;
}

.t3-cart-drawer .woocommerce-mini-cart-item > a:not(.remove_from_cart_button) {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	color: #111;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
}

.t3-cart-drawer .woocommerce-mini-cart-item img,
.t3-cart-drawer .twbb_menu-cart__product-image img {
	width: 76px !important;
	height: 76px !important;
	margin: 0 !important;
	border-radius: 8px;
	object-fit: cover;
}

.t3-cart-drawer .remove_from_cart_button {
	position: absolute;
	top: 16px;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: #777 !important;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
}

.t3-cart-drawer .twbb_menu-cart__product-remove .remove_from_cart_button::before,
.t3-cart-drawer .twbb_menu-cart__product-remove .remove_from_cart_button::after {
	position: absolute;
	top: 12px;
	left: 6px;
	width: 14px;
	height: 1px;
	background: currentColor;
	content: "";
}

.t3-cart-drawer .twbb_menu-cart__product-remove .remove_from_cart_button::before {
	transform: rotate(45deg);
}

.t3-cart-drawer .twbb_menu-cart__product-remove .remove_from_cart_button::after {
	transform: rotate(-45deg);
}

.t3-cart-drawer .remove_from_cart_button:hover {
	background: #f2f2f2;
	color: #111 !important;
}

.t3-cart-drawer-quantity {
	position: absolute;
	left: 90px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	height: 28px;
	border: 1px solid #ddd;
	border-radius: 7px;
	background: #fff;
}

.t3-cart-drawer-quantity button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 26px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	font-size: 17px;
	cursor: pointer;
}

.t3-cart-drawer-quantity > span {
	min-width: 24px;
	font-size: 12px;
	text-align: center;
}

.t3-cart-drawer-quantity.is-loading {
	opacity: .45;
	pointer-events: none;
}

.t3-cart-drawer .t3-cart-line-total {
	position: absolute;
	right: 0;
	bottom: 22px;
	color: #555;
	font-size: 12px;
	white-space: nowrap;
}

.t3-cart-drawer .twbb_menu-cart__product-price .t3-cart-line-total {
	position: static;
	color: inherit;
	font-size: inherit;
}

.t3-cart-drawer .woocommerce-mini-cart__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 18px 0 14px;
	border-top: 0;
	color: #111;
	font-size: 15px;
}

.t3-cart-drawer .twbb_menu-cart__subtotal {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	margin: 0 !important;
	padding: 20px 0 14px !important;
	border: 0 !important;
	background: #fff !important;
	color: #111 !important;
	font-size: 15px !important;
}

.t3-cart-drawer .woocommerce-mini-cart__total strong {
	font-weight: 500;
}

.t3-cart-drawer .woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0;
	padding: 0 0 4px;
}

.t3-cart-drawer .twbb_menu-cart__footer-buttons {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0 !important;
	padding: 0 0 4px !important;
	background: #fff !important;
}

.t3-cart-drawer .woocommerce-mini-cart__buttons .button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin: 0 !important;
	padding: 10px 14px !important;
	border: 1px solid #111 !important;
	border-radius: 8px !important;
	background: #fff !important;
	color: #111 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	text-decoration: none;
}

.t3-cart-drawer .twbb_menu-cart__footer-buttons .elementor-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin: 0 !important;
	padding: 10px 14px !important;
	border: 1px solid #111 !important;
	border-radius: 8px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: #111 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
}

.t3-cart-drawer .twbb_menu-cart__footer-buttons .elementor-button--checkout {
	background: #111 !important;
	color: #fff !important;
}

.t3-cart-drawer .twbb_menu-cart__footer-buttons .elementor-button-text {
	color: inherit !important;
}

.t3-cart-drawer .woocommerce-mini-cart__buttons .checkout {
	background: #111 !important;
	color: #fff !important;
}

.t3-cart-drawer .woocommerce-mini-cart__empty-message {
	margin: 0;
	padding: 72px 12px 20px;
	color: #555;
	font-size: 15px;
	text-align: center;
}

.t3-cart-drawer .t3-cart-continue {
	display: block;
	width: max-content;
	margin: -2px auto 0;
	padding: 11px 18px;
	border: 1px solid #111;
	border-radius: 8px;
	color: #111;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

@media (max-width: 600px) {
	.t3-cart-drawer {
		width: 100%;
	}

	.t3-cart-drawer-header {
		padding-right: 16px;
		padding-left: 16px;
	}

	.t3-cart-drawer-body {
		padding-right: 16px;
		padding-left: 16px;
	}

	.t3-cart-drawer .woocommerce-mini-cart__buttons {
		grid-template-columns: 1fr;
	}

	.t3-cart-drawer .twbb_menu-cart__footer-buttons {
		grid-template-columns: 1fr;
	}
}
