/*
 * Cart Styles - One of One Collectables
 * Cart notification and clear cart functionality styling
 */

/* === CART NOTIFICATION === */
#cart-notification {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #0d1b2a;
	color: white;
	padding: 15px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	z-index: 999;
	max-width: 300px;
	display: none;
}

#cart-notification .notification-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

#cart-notification .notification-title {
	font-size: 1.1rem;
	font-weight: bold;
}

#close-cart-notification {
	background: none;
	border: none;
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

#cart-notification-count {
	margin: 0 0 10px 0;
	font-size: 0.9rem;
}

#cart-notification .notification-actions {
	display: flex;
	gap: 10px;
}

#cart-notification .view-cart-btn {
	flex: 1;
	text-align: center;
	padding: 8px 0;
	background: white;
	color: #0d1b2a;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.85rem;
}

#clear-cart-button {
	flex: 1;
	text-align: center;
	padding: 8px 0;
	background: #6c757d;
	color: white;
	border: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
}

/* === CLEAR CART WARNING === */
.clear-cart-warning {
	text-align: center;
	margin: 20px 0;
	padding: 15px;
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 8px;
}

.clear-cart-warning p {
	margin: 0 0 15px 0;
	color: #856404;
	font-weight: 600;
}

.clear-cart-btn {
	background: #dc3545;
	color: white;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	transition: background 0.3s;
}

.clear-cart-btn:hover {
	background: #c82333;
	color: white;
	text-decoration: none;
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
	#cart-notification {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
		padding: 12px 15px;
	}
	
	#cart-notification .notification-actions {
		flex-direction: column;
		gap: 8px;
	}
}