/* =========================================================================
   Bee1 Side Cart 1.0.0 - the drawer.
   Every colour, font, corner and width is a token printed from the settings screen onto
   `.bee1-sc` (never :root). The fallbacks below are the neutral defaults.
   Selectors carry `.bee1-sc` so theme and Elementor kit rules for buttons, links, lists and
   images do not reach in; `!important` only where those rules are known to use it.
   ========================================================================= */

.bee1-sc {
	position: fixed;
	inset: 0;
	z-index: 100000;
	pointer-events: none;
	visibility: hidden;
	font-family: var(--bee1-sc-font, inherit);
	color: var(--bee1-sc-ink, #0B0A09);
}
.bee1-sc.is-on { pointer-events: auto; visibility: visible; }
html.bee1-sc-lock { overflow: hidden; }

.bee1-sc__scrim {
	position: absolute; inset: 0;
	background: rgba(11, 10, 9, .32);
	opacity: 0; transition: opacity .2s ease;
}
.bee1-sc.is-on .bee1-sc__scrim { opacity: 1; }

.bee1-sc__panel {
	position: absolute; top: 0; bottom: 0; inset-inline-end: 0;
	width: min(var(--bee1-sc-width, 400px), 92vw);
	display: flex; flex-direction: column;
	background: var(--bee1-sc-paper, #FFFFFF);
	transform: translateX(100%);
	transition: transform .24s ease;
	overflow: hidden;
	outline: none;
	box-sizing: border-box;
}
[dir="rtl"] .bee1-sc__panel, .rtl .bee1-sc__panel { transform: translateX(-100%); }
.bee1-sc.is-on .bee1-sc__panel { transform: none; }
@media (prefers-reduced-motion: reduce) {
	.bee1-sc__panel, .bee1-sc__scrim { transition: none; }
}
.bee1-sc *, .bee1-sc *::before, .bee1-sc *::after { box-sizing: border-box; }

/* ---- head ---- */
.bee1-sc .bee1-sc__head {
	flex: 0 0 auto;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 22px 20px 18px;
	border-bottom: 1px solid var(--bee1-sc-rule, #E4DFD8);
}
.bee1-sc .bee1-sc__heading { display: flex; align-items: baseline; gap: 8px; }
.bee1-sc .bee1-sc__heading strong {
	font-size: 13px; font-weight: 600;
	letter-spacing: var(--bee1-sc-title-track, .16em);
	text-transform: var(--bee1-sc-title-case, uppercase);
}
.bee1-sc .bee1-sc__count { font-size: 12px; font-weight: 400; color: var(--bee1-sc-mut, #767068); }
.bee1-sc button.bee1-sc__close {
	width: 44px; height: 44px; margin: -12px;
	display: flex; align-items: center; justify-content: center;
	padding: 0 !important; border: 0 !important; border-radius: 0 !important;
	background: transparent !important; color: var(--bee1-sc-ink, #0B0A09) !important;
	box-shadow: none !important; cursor: pointer;
}
.bee1-sc button.bee1-sc__close:focus-visible { outline: 2px solid var(--bee1-sc-ink, #0B0A09); outline-offset: -6px; }

.bee1-sc .bee1-sc__panel > .widget_shopping_cart_content {
	flex: 1 1 auto; min-height: 0;
	display: flex; flex-direction: column;
	margin: 0; padding: 0;
}
.bee1-sc .bee1-sbacc-drawer-notice { margin: 16px 20px 0; }

/* ---- free shipping ---- */
.bee1-sc .bee1-sc__ship {
	flex: 0 0 auto;
	padding: 14px 20px 16px;
	border-bottom: 1px solid var(--bee1-sc-rule, #E4DFD8);
}
.bee1-sc .bee1-sc__ship-text {
	display: flex; align-items: center; gap: 8px;
	margin: 0 0 10px;
	font-size: 12.5px; line-height: 1.4; color: var(--bee1-sc-ink-2, #3A3631);
}
.bee1-sc .bee1-sc__ship.is-reached .bee1-sc__ship-text svg { color: var(--bee1-sc-ok, #1F7A4C); flex: 0 0 auto; }
.bee1-sc .bee1-sc__ship-text .amount { color: inherit; font-weight: 500; }
.bee1-sc .bee1-sc__ship-bar { height: 2px; background: var(--bee1-sc-paper-2, #EFEBE5); border-radius: 2px; overflow: hidden; }
.bee1-sc .bee1-sc__ship-bar span { display: block; height: 2px; background: var(--bee1-sc-ink, #0B0A09); transition: width .3s ease; }

/* ---- lines ---- */
.bee1-sc .bee1-sc__scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 0 20px; -webkit-overflow-scrolling: touch; }
.bee1-sc ul.bee1-sc__list { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.bee1-sc ul.bee1-sc__list li.bee1-sc__item {
	display: grid !important;
	grid-template-columns: 84px minmax(0, 1fr);
	gap: 14px;
	margin: 0 !important;
	padding: 18px 0 !important;
	border-bottom: 1px solid var(--bee1-sc-rule, #E4DFD8);
	list-style: none !important;
	position: static;
}
/* WooCommerce's list clearfix would become a grid item and push the photo into column 2. */
.bee1-sc ul.bee1-sc__list li.bee1-sc__item::before,
.bee1-sc ul.bee1-sc__list li.bee1-sc__item::after { content: none !important; display: none !important; }
.bee1-sc ul.bee1-sc__list li.bee1-sc__item .bee1-sc__thumb img {
	display: block;
	width: 84px !important; height: 112px !important; max-width: 84px !important;
	margin: 0 !important; float: none !important;
	object-fit: cover;
	background: var(--bee1-sc-paper-2, #EFEBE5);
	border-radius: 0;
}
.bee1-sc .bee1-sc__meta { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bee1-sc .bee1-sc__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.bee1-sc .bee1-sc__titles { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.bee1-sc .bee1-sc__brand { font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--bee1-sc-mut, #767068); }
.bee1-sc a.bee1-sc__name, .bee1-sc span.bee1-sc__name {
	font-family: var(--bee1-sc-font, inherit);
	font-size: 13.5px; font-weight: 500; line-height: 1.35;
	color: var(--bee1-sc-ink, #0B0A09) !important;
	text-decoration: none !important;
	unicode-bidi: isolate;
}
.bee1-sc .bee1-sc__price,
.bee1-sc .bee1-sc__price .amount { font-size: 13.5px; font-weight: 500; white-space: nowrap; color: var(--bee1-sc-ink, #0B0A09); }
.bee1-sc .bee1-sc__price del { opacity: .55; margin-inline-end: 6px; }
.bee1-sc .bee1-sc__price ins { text-decoration: none; }
.bee1-sc .bee1-sc__variation { font-size: 12px; color: var(--bee1-sc-mut, #767068); unicode-bidi: isolate; }
.bee1-sc dl.variation { margin: 0; font-size: 12px; color: var(--bee1-sc-mut, #767068); }
.bee1-sc .bee1-sc__scarce {
	align-self: flex-start;
	padding: 3px 8px;
	font-size: 11px;
	background: var(--bee1-sc-scarce-bg, #FCE9E9);
	color: var(--bee1-sc-scarce-ink, #7A2020);
	border-radius: min(var(--bee1-sc-radius-ctl, 0px), 12px);
}
.bee1-sc .bee1-sc__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px; margin-top: 4px; }
.bee1-sc .bee1-sc__qty { margin: 0; font-size: 12px; color: var(--bee1-sc-ink-2, #3A3631); }
.bee1-sc li.bee1-sc__item a.bee1-sc__remove {
	position: static !important;
	width: auto !important; height: auto !important;
	display: inline !important;
	padding: 0 !important; border: 0 !important; border-radius: 0 !important;
	font-size: 12px !important; line-height: 1.4 !important; font-weight: 400 !important;
	color: var(--bee1-sc-mut, #767068) !important;
	background: transparent !important;
	text-decoration: underline !important; text-underline-offset: 3px;
}
.bee1-sc li.bee1-sc__item a.bee1-sc__remove:hover { color: var(--bee1-sc-ink, #0B0A09) !important; }

/* Bee1-Woo-Functions mini-cart quantity (+/-), in the drawer's language. */
.bee1-sc .bee1-mini-qty {
	display: inline-flex !important; align-items: stretch;
	height: 34px !important;
	border: 1px solid var(--bee1-sc-rule, #E4DFD8) !important;
	border-radius: var(--bee1-sc-radius-ctl, 0px) !important;
	background: transparent !important;
	overflow: hidden;
	direction: ltr;
}
.bee1-sc .bee1-mini-qty .bee1-mini-qty-btn {
	width: 34px !important; min-width: 34px !important; height: 32px !important;
	padding: 0 !important; margin: 0 !important; border: 0 !important; border-radius: 0 !important;
	background: transparent !important; box-shadow: none !important;
	color: var(--bee1-sc-ink, #0B0A09) !important;
	font-family: var(--bee1-sc-font, inherit) !important; font-size: 16px !important; font-weight: 400 !important; line-height: 1 !important;
}
.bee1-sc .bee1-mini-qty .bee1-mini-qty-btn:hover { background: var(--bee1-sc-paper-2, #EFEBE5) !important; }
.bee1-sc .bee1-mini-qty .bee1-mini-qty-input {
	width: 30px !important; min-width: 30px !important; height: 32px !important;
	padding: 0 !important; margin: 0 !important; border: 0 !important; border-radius: 0 !important;
	background: transparent !important; box-shadow: none !important;
	font-family: var(--bee1-sc-font, inherit) !important; font-size: 13px !important;
	color: var(--bee1-sc-ink, #0B0A09) !important;
	text-align: center; -moz-appearance: textfield; appearance: textfield;
}
.bee1-sc .bee1-mini-qty-input::-webkit-inner-spin-button,
.bee1-sc .bee1-mini-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.bee1-sc .bee1-mini-qty-error { display: block; flex-basis: 100%; margin-top: 6px; font-size: 11.5px; color: var(--bee1-sc-scarce-ink, #7A2020); }

/* ---- foot ---- */
.bee1-sc .bee1-sc__foot {
	flex: 0 0 auto;
	display: flex; flex-direction: column; gap: 12px;
	padding: 16px 20px 22px;
	padding-bottom: max(22px, env(safe-area-inset-bottom));
	border-top: 1px solid var(--bee1-sc-rule, #E4DFD8);
	background: var(--bee1-sc-paper, #FFFFFF);
}
.bee1-sc p.bee1-sc__total {
	display: flex; justify-content: space-between; align-items: baseline;
	margin: 0 !important; padding: 0 !important; border: 0 !important;
	font-size: 13px; color: var(--bee1-sc-ink-2, #3A3631);
}
.bee1-sc p.bee1-sc__total strong,
.bee1-sc p.bee1-sc__total .amount { font-size: 15px; font-weight: 600; color: var(--bee1-sc-ink, #0B0A09); }
.bee1-sc p.bee1-sc__note { margin: -4px 0 0; font-size: 11.5px; color: var(--bee1-sc-mut, #767068); }
.bee1-sc p.bee1-sc__cta { display: flex !important; flex-direction: column; gap: 12px; margin: 0 !important; padding: 0 !important; }
.bee1-sc p.bee1-sc__cta a.bee1-sc__checkout {
	display: flex !important; align-items: center; justify-content: center; gap: 10px;
	width: 100% !important; height: 50px !important; margin: 0 !important;
	padding: 0 16px !important;
	background: var(--bee1-sc-ink, #0B0A09) !important;
	color: var(--bee1-sc-button-ink, #FFFFFF) !important;
	border: 1px solid var(--bee1-sc-ink, #0B0A09) !important;
	border-radius: var(--bee1-sc-radius-button, 0px) !important;
	box-shadow: none !important;
	font-family: var(--bee1-sc-font, inherit) !important;
	font-size: 13px !important; font-weight: 600 !important; letter-spacing: .08em; line-height: 1 !important;
	text-transform: none !important; text-decoration: none !important;
}
.bee1-sc p.bee1-sc__cta a.bee1-sc__checkout:hover { background: var(--bee1-sc-ink-2, #3A3631) !important; border-color: var(--bee1-sc-ink-2, #3A3631) !important; }
.bee1-sc p.bee1-sc__cta a.bee1-sc__to-cart {
	display: block !important; width: auto !important; height: auto !important; margin: 0 !important; padding: 0 !important;
	background: transparent !important; border: 0 !important; box-shadow: none !important;
	color: var(--bee1-sc-ink, #0B0A09) !important;
	font-family: var(--bee1-sc-font, inherit) !important;
	font-size: 12.5px !important; font-weight: 400 !important; letter-spacing: 0; line-height: 1.4 !important;
	text-transform: none !important; text-decoration: underline !important; text-underline-offset: 3px; text-align: center;
}
.bee1-sc a:focus-visible { outline: 2px solid var(--bee1-sc-ink, #0B0A09); outline-offset: 3px; }

/* ---- empty ---- */
.bee1-sc .bee1-sc__empty {
	flex: 1 1 auto;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 14px; margin: 0; padding: 24px 36px; text-align: center;
}
.bee1-sc .bee1-sc__empty-icon { color: var(--bee1-sc-ink, #0B0A09); }
.bee1-sc p.bee1-sc__empty-title { margin: 0; font-size: 17px; font-weight: 500; color: var(--bee1-sc-ink, #0B0A09); }
.bee1-sc p.bee1-sc__empty-text { margin: 0; font-size: 13px; line-height: 1.6; color: var(--bee1-sc-ink-2, #3A3631); }
.bee1-sc a.bee1-sc__primary {
	display: flex; align-items: center; justify-content: center;
	width: 100%; height: 50px; margin-top: 10px;
	background: var(--bee1-sc-ink, #0B0A09) !important;
	color: var(--bee1-sc-button-ink, #FFFFFF) !important;
	border-radius: var(--bee1-sc-radius-button, 0px);
	font-size: 13px; font-weight: 600; letter-spacing: .08em;
	text-decoration: none !important;
}
.bee1-sc .bee1-sc__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 4px; }
.bee1-sc a.bee1-sc__chip {
	padding: 9px 14px;
	border: 1px solid var(--bee1-sc-rule, #E4DFD8);
	border-radius: var(--bee1-sc-radius-button, 0px);
	font-size: 12.5px; color: var(--bee1-sc-ink, #0B0A09) !important; text-decoration: none !important;
}
.bee1-sc a.bee1-sc__chip:hover { border-color: var(--bee1-sc-ink, #0B0A09); }
