/* ==========================================================================
   Slide-out Cart Sidebar
   Overlays from the right when items are added to cart.
   ========================================================================== */

.bbq-cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 99998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bbq-cart-overlay--open {
	opacity: 1;
	visibility: visible;
}

.bbq-cart-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 420px;
	max-width: 90vw;
	background: #fff;
	z-index: 99999;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
	font-family: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
}

.bbq-cart-sidebar--open {
	transform: translateX(0);
}

/* Header */
.bbq-cart-sidebar__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #eee;
	flex-shrink: 0;
}

.bbq-cart-sidebar__title {
	font-family: 'Marck Script', cursive;
	font-size: 1.25rem;
	font-weight: 700;
	color: #3E2723;
	margin: 0;
}

.bbq-cart-sidebar__count {
	background: #2E7D32;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
	margin-left: 0.5rem;
}

.bbq-cart-sidebar__close {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #757575;
	cursor: pointer;
	padding: 0.25rem;
	line-height: 1;
	transition: color 0.2s ease;
}

.bbq-cart-sidebar__close:hover {
	color: #3E2723;
}

/* Items */
.bbq-cart-sidebar__items {
	flex: 1;
	overflow-y: auto;
	padding: 1rem 1.5rem;
}

.bbq-cart-sidebar__empty {
	text-align: center;
	padding: 3rem 1rem;
	color: #9e9e9e;
	font-size: 0.9375rem;
}

.bbq-cart-sidebar__item {
	display: flex;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid #f5f5f5;
}

.bbq-cart-sidebar__item:last-child {
	border-bottom: none;
}

.bbq-cart-sidebar__item-image {
	width: 80px !important;
	min-width: 80px;
	height: 80px !important;
	max-height: 80px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
	background: #f5f5f5;
}

.bbq-cart-sidebar__item-details {
	flex: 1;
	min-width: 0;
}

.bbq-cart-sidebar__item-name {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #3E2723;
	margin: 0 0 0.125rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bbq-cart-sidebar__item-meta {
	font-size: 12px;
	color: #666;
	line-height: 1.5;
	margin: 0 0 0.25rem;
}

.bbq-cart-sidebar__item-meta strong {
	color: #553024;
}

/* Edit selections link (berry boxes) */
.bbq-cart-sidebar__item-edit {
	display: inline-block;
	font-size: 0.75rem;
	color: #2E7D32;
	text-decoration: none;
	font-weight: 600;
	margin-bottom: 0.25rem;
	transition: color 0.2s ease;
}

.bbq-cart-sidebar__item-edit:hover {
	color: #1B5E20;
	text-decoration: underline;
}

.bbq-cart-sidebar__item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0.375rem;
}

.bbq-cart-sidebar__item-price {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #2E7D32;
}

/* Quantity stepper */
.bbq-cart-sidebar__qty-control {
	display: inline-flex;
	align-items: center;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}

.bbq-cart-sidebar__qty-control--loading .bbq-cart-sidebar__qty-btn,
.bbq-cart-sidebar__qty-control--loading .bbq-cart-sidebar__qty-value {
	opacity: 0.35;
	pointer-events: none;
}

.bbq-cart-sidebar__qty-spinner {
	display: none;
}

.bbq-cart-sidebar__qty-control--loading .bbq-cart-sidebar__qty-spinner {
	display: block;
	position: absolute;
	inset: 0;
	margin: auto;
	width: 16px;
	height: 16px;
	border: 2px solid #e0e0e0;
	border-top-color: #8B1A4A;
	border-radius: 50%;
	animation: bbq-spin 0.5s linear infinite;
}

@keyframes bbq-spin {
	to { transform: rotate(360deg); }
}

.bbq-cart-sidebar__qty-btn {
	background: #fafafa;
	border: none;
	color: #553024;
	width: 28px;
	height: 28px;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease, color 0.15s ease;
	padding: 0;
	line-height: 1;
}

.bbq-cart-sidebar__qty-btn:hover {
	background: #f0e6ea;
	color: #8B1A4A;
}

.bbq-cart-sidebar__qty-btn:active {
	background: #e8d5dc;
}

.bbq-cart-sidebar__qty-btn--trash {
	color: #bdbdbd;
}

.bbq-cart-sidebar__qty-btn--trash:hover {
	background: #fce4ec;
	color: #c62828;
}

.bbq-cart-sidebar__qty-btn--trash svg {
	display: block;
}

.bbq-cart-sidebar__qty-value {
	min-width: 28px;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #3E2723;
	user-select: none;
}

.bbq-cart-sidebar__item-remove {
	background: none;
	border: none;
	color: #bdbdbd;
	cursor: pointer;
	font-size: 1.125rem;
	padding: 0;
	line-height: 1;
	align-self: flex-start;
	transition: color 0.2s ease;
}

.bbq-cart-sidebar__item-remove:hover {
	color: #8B1A4A;
}

/* Footer */
.bbq-cart-sidebar__footer {
	border-top: 1px solid #eee;
	padding: 1.25rem 1.5rem;
	flex-shrink: 0;
}

.bbq-cart-sidebar__subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.bbq-cart-sidebar__subtotal-label {
	font-size: 1rem;
	font-weight: 600;
	color: #3E2723;
}

.bbq-cart-sidebar__subtotal-value {
	font-size: 1.125rem;
	font-weight: 700;
	color: #3E2723;
}

.bbq-cart-sidebar__checkout-btn {
	display: block;
	width: 100%;
	padding: 0.875rem 1.5rem;
	background: #8B1A4A;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease;
}

.bbq-cart-sidebar__checkout-btn:hover {
	background: #6B0F36;
	color: #fff;
}

.bbq-cart-sidebar__view-cart {
	display: block;
	text-align: center;
	margin-top: 0.75rem;
	font-size: 0.875rem;
	color: #8B1A4A;
	text-decoration: none;
	font-weight: 600;
}

.bbq-cart-sidebar__view-cart:hover {
	text-decoration: underline;
}

/* Just-added highlight */
.bbq-cart-sidebar__item--just-added {
	animation: bbq-sidebar-highlight 1s ease;
}

@keyframes bbq-sidebar-highlight {
	0% {
		background: #e8f5e9;
	}
	100% {
		background: transparent;
	}
}

/* Toast */
.bbq-cart-sidebar__toast {
	background: #553024;
	color: #fff;
	padding: 10px 16px;
	font-size: 13px;
	text-align: center;
	transition: opacity 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
}

.bbq-cart-sidebar__toast-undo {
	color: #fe5bac;
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
	white-space: nowrap;
}

.bbq-cart-sidebar__toast-undo:hover {
	color: #fff;
}

.bbq-cart-sidebar__toast--fade {
	opacity: 0;
}

/* Responsive */
@media (max-width: 480px) {
	.bbq-cart-sidebar {
		width: 100vw;
		max-width: 100vw;
	}
}
