/**
 * Right-side cart drawer – brand blue / white.
 */

.deryaba-side-cart {
	position: fixed;
	inset: 0;
	z-index: 100050;
	display: block;
}

.deryaba-side-cart[hidden] {
	display: none !important;
}

.deryaba-side-cart__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 91, 145, 0.28);
}

.deryaba-side-cart__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(420px, 100%);
	height: 100%;
	background: #ffffff;
	color: #005b91;
	box-shadow: -18px 0 40px rgba(0, 91, 145, 0.18);
	display: flex;
	flex-direction: column;
	transform: translateX(0);
}

.deryaba-side-cart__fragment,
.deryaba-side-cart__inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}

.deryaba-side-cart__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 22px 16px;
	border-bottom: 1px solid rgba(0, 91, 145, 0.16);
}

.deryaba-side-cart__title {
	margin: 0;
	padding: 0;
	color: #005b91;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.deryaba-side-cart__close {
	border: 0;
	background: transparent;
	color: #005b91;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 0 4px;
}

.deryaba-side-cart__body {
	flex: 1 1 auto;
	overflow: auto;
	padding: 16px 22px;
}

.deryaba-side-cart__empty {
	margin: 24px 0;
	color: #005b91;
	font-size: 15px;
	line-height: 1.5;
}

.deryaba-side-cart__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.deryaba-side-cart__item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 14px 0;
	border-bottom: 1px solid rgba(0, 91, 145, 0.12);
	position: relative;
}

.deryaba-side-cart__thumb {
	flex: 0 0 72px;
	width: 72px;
}

.deryaba-side-cart__thumb img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: cover;
}

.deryaba-side-cart__meta {
	flex: 1 1 auto;
	min-width: 0;
	padding-right: 22px;
}

.deryaba-side-cart__name {
	display: block;
	color: #005b91;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
	margin: 0 0 6px;
}

.deryaba-side-cart__qty,
.deryaba-side-cart__price {
	display: block;
	color: #005b91;
	font-size: 14px;
	line-height: 1.4;
}

.deryaba-side-cart__remove {
	position: absolute;
	top: 10px;
	right: 0;
	color: #005b91;
	font-size: 22px;
	line-height: 1;
	text-decoration: none;
}

.deryaba-side-cart__foot {
	padding: 16px 22px 24px;
	border-top: 1px solid rgba(0, 91, 145, 0.16);
}

.deryaba-side-cart__totals {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 16px;
	color: #005b91;
	font-size: 16px;
}

.deryaba-side-cart__checkout,
.deryaba-side-cart__continue {
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	padding: 12px 16px;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}

.deryaba-side-cart__checkout {
	background: #005b91;
	color: #ffffff !important;
	border: 1px solid #005b91;
	margin-bottom: 10px;
}

.deryaba-side-cart__checkout:hover {
	background: #004a75;
	border-color: #004a75;
}

.deryaba-side-cart__continue {
	background: #ffffff;
	color: #005b91;
	border: 1px solid #005b91;
}

.deryaba-side-cart__continue:hover {
	background: #005b91;
	color: #ffffff;
}

body.deryaba-side-cart-open {
	overflow: hidden;
}

@media only screen and (max-width: 680px) {
	.deryaba-side-cart__panel {
		width: 100%;
	}
}
