/* ================================
   Variant Selector Styles
   ================================ */

/* Unselected radio button state */
shopify-variant-selector::part(radio) {
	font-weight: 700 !important;
	font-size: 16px !important;
	background-color: #e4e4e4 !important;
	color: #000000 !important;
	padding: 8px !important;
	border-radius: 12px !important;
	border: 1px solid transparent !important;
}

/* Selected radio button state */
shopify-variant-selector::part(radio-selected) {
	font-weight: 700 !important;
	font-size: 16px !important;
	background-color: #374151 !important;
	color: #ffffff !important;
	padding: 8px !important;
	border-radius: 12px !important;
	border: 1px solid #6b7280 !important;
}

/* ================================
   Cart Styles
   ================================ */

/* Cart dialog */
shopify-cart::part(dialog) {
	background-color: #111827;
	color: #ffffff;
	border: 1px solid #374151;
	border-radius: 0.5rem;
	max-width: 32rem;
	width: 100%;
}

/* Close button */
shopify-cart::part(close-button) {
	background-color: transparent;
	color: #ffffff;
	fill: #ffffff;
	border: 1px solid #4b5563;
	border-radius: 0.375rem;
	cursor: pointer;
	padding: 0;
	transition: all 0.2s;
}

shopify-cart::part(close-button):hover {
	background-color: #374151;
	border-color: #6b7280;
}

/* Primary button (Checkout) */
shopify-cart::part(primary-button) {
	width: 100%;
	padding: 0.75rem 1.5rem;
	background-color: #ffffff;
	color: #000000;
	font-weight: 600;
	border: none;
	border-radius: 0.25rem;
	cursor: pointer;
	transition: background-color 0.2s;
}

shopify-cart::part(primary-button):hover {
	background-color: #e5e7eb;
}

/* Secondary buttons (Remove, Update quantity) */
shopify-cart::part(secondary-button) {
	background-color: transparent;
	color: #ffffff;
	fill: #ffffff;
	border: 1px solid #4b5563;
	border-radius: 0.25rem;
	cursor: pointer;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	transition: all 0.2s;
}

shopify-cart::part(secondary-button):hover {
	border-color: #6b7280;
	background-color: #374151;
}

/* Tertiary button (Apply discount) */
shopify-cart::part(tertiary-button) {
	background-color: #ffffff;
	color: #000000;
	fill: #000000;
	border: none;
	border-radius: 0.25rem;
	cursor: pointer;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.2s;
}

shopify-cart::part(tertiary-button):hover {
	background-color: #e5e7eb;
}

/* Input field (Discount code input) */
shopify-cart::part(input-field) {
	width: 100%;
	padding: 0.5rem 0.75rem;
	background-color: transparent;
	border: 1px solid #4b5563;
	border-radius: 0.25rem;
	color: #ffffff;
	font-size: 0.875rem;
	transition: border-color 0.2s;
}

shopify-cart::part(input-field):focus {
	outline: none;
	border-color: #9ca3af;
}

shopify-cart::part(input-field)::placeholder {
	color: #6b7280;
}

/* Discount code label */
shopify-cart::part(discount-code) {
	color: #d1d5db;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Discount error message */
shopify-cart::part(discount-error) {
	color: #f87171;
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

/* Line item heading (product title) */
shopify-cart::part(line-heading) {
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
}

/* Line item image */
shopify-cart::part(line-image) {
	border-radius: 0.375rem;
	border: 1px solid #374151;
}

/* Line item options (variant info) */
shopify-cart::part(line-options) {
	color: #9ca3af;
	font-size: 0.875rem;
}

/* Line item price */
shopify-cart::part(line-price) {
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
}
