.ky-cart-count:empty {
	display: none !important;
}

.ky-cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 9998;
}
.ky-cart-overlay.active {
	opacity: 1;
	visibility: visible;
}

body.ky-cart-open {
	overflow: hidden;
}

.ky-mini-cart {
	position: fixed;
	top: 0;
	right: -400px;
	width: 380px;
	max-width: 90vw;
	height: 100vh;
	background: #0B0B0B;
	border-left: 1px solid rgba(200, 164, 91, 0.3);
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	transition: right 0.3s ease;
}
.ky-mini-cart.active {
	right: 0;
}

.ky-mini-cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid rgba(200, 164, 91, 0.2);
}
.ky-mini-cart-header h3 {
	font-family: 'Cormorant Garamond', serif;
	color: #C8A45B;
	font-size: 22px;
	margin: 0;
}
.ky-mini-cart-header button {
	background: none;
	border: none;
	color: #F7F7F7;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}
.ky-mini-cart-header button:hover {
	color: #C8A45B;
}

.ky-mini-cart-body {
	flex: 1;
	overflow-y: auto;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
}

.ky-mini-cart-empty {
	text-align: center;
	margin: auto 0;
	color: #F7F7F7;
}
.ky-mini-cart-empty p {
	margin-bottom: 16px;
	opacity: 0.7;
}
.ky-mini-cart-shop-link {
	display: inline-block;
	background: #C8A45B;
	color: #0B0B0B;
	padding: 10px 24px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
}

.ky-mini-cart-items {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ky-mini-cart-item {
	display: flex;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(200, 164, 91, 0.12);
	position: relative;
}
.ky-mini-cart-item-image img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}
.ky-mini-cart-item-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-right: 20px;
}
.ky-mini-cart-item-name {
	color: #F7F7F7;
	font-size: 14px;
	text-decoration: none;
	line-height: 1.3;
}
.ky-mini-cart-item-name:hover {
	color: #C8A45B;
}
.ky-mini-cart-item-qty {
	color: rgba(247, 247, 247, 0.6);
	font-size: 12px;
}
.ky-mini-cart-item-unit-price {
	color: rgba(247, 247, 247, 0.55);
	font-size: 12px;
}
.ky-mini-cart-item-qty-control {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 2px 0;
}
.ky-mini-cart-qty-btn {
	width: 24px;
	height: 24px;
	border-radius: 4px;
	border: 1px solid rgba(200, 164, 91, 0.4);
	background: transparent;
	color: #C8A45B;
	font-size: 15px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
}
.ky-mini-cart-qty-btn:hover {
	background: rgba(200, 164, 91, 0.15);
}
.ky-mini-cart-qty-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.ky-mini-cart-item-qty-value {
	color: #F7F7F7;
	font-size: 13px;
	min-width: 16px;
	text-align: center;
}
.ky-mini-cart-item-price {
	color: #C8A45B;
	font-size: 14px;
	font-weight: 600;
}
.ky-mini-cart-item-remove {
	position: absolute;
	top: 14px;
	right: 0;
	background: none;
	border: none;
	color: rgba(247, 247, 247, 0.5);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	padding: 0 4px;
}
.ky-mini-cart-item-remove:hover {
	color: #e05252;
}
.ky-mini-cart-item-remove:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.ky-mini-cart-subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-top: 1px solid rgba(200, 164, 91, 0.2);
	margin-top: auto;
	color: #F7F7F7;
	font-size: 15px;
}
.ky-mini-cart-subtotal strong {
	color: #C8A45B;
	font-size: 18px;
}

.ky-mini-cart-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 24px;
	border-top: 1px solid rgba(200, 164, 91, 0.2);
}
.ky-mini-cart-btn {
	display: block;
	text-align: center;
	padding: 13px;
	border-radius: 6px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 13px;
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.ky-mini-cart-btn:hover {
	opacity: 0.85;
}
.ky-mini-cart-btn-ghost {
	background: transparent;
	color: #C8A45B;
	border: 1px solid #C8A45B;
}
.ky-mini-cart-btn-primary {
	background: #C8A45B;
	color: #0B0B0B;
	border: 1px solid #C8A45B;
}

@media (max-width: 480px) {
	.ky-mini-cart {
		width: 100%;
		max-width: 100vw;
	}
}

body.admin-bar .ky-mini-cart,
body.admin-bar .ky-cart-overlay {
	top: 32px;
	height: calc(100vh - 32px);
}
@media screen and (max-width: 782px) {
	body.admin-bar .ky-mini-cart,
	body.admin-bar .ky-cart-overlay {
		top: 46px;
		height: calc(100vh - 46px);
	}
}