/**
 * MA Cart Subscription Upgrade — Styles v2.0.0
 *
 * Simplified: upgrade button only.
 * No dropdown, no subscribed pill — subscription items show nothing.
 */


a.fkcart-select-options {
    display: none !important;
}
#fkcart-modal .fkcart-slider-body .fkcart-item-wrap .fkcart--item {
    gap: 10px !important;
}
fkcart-modal .fkcart-panel:not(.fkwcs_fkcart_gpay_wrapper) {
    padding-left: 12px !important;
}
/* ---------------------------------------------------------------------------
   Wrapper — sits inside .fkcart-item-meta, above the quantity selector
   --------------------------------------------------------------------------- */

body .ma-csu-wrapper {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin: 5px 0 5px;
	padding: 0;
	text-align: center;
	background: none;
	border: none;
	box-shadow: none;
	font-size: 11px;
	line-height: 1;
}

/* ---------------------------------------------------------------------------
   Upgrade button
   height: auto overrides Woodmart --wd-form-height: 42px
   --------------------------------------------------------------------------- */

body .ma-csu-wrapper .ma-csu-upgrade-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: auto;
	min-width: 165px;
	max-width: 90%;
	height: auto;
	min-height: 0;
	padding: 8px 14px;
	margin: 0;

	border-radius: 999px;
	border: none;
	outline: none;

	background: linear-gradient(135deg, #2ecc71 0%, #22a855 100%);
	color: #fff;

	font-size: 11px;
	font-weight: 600;
	font-family: inherit;
	line-height: 1;
	letter-spacing: 0.2px;
	text-transform: none;
	white-space: nowrap;
	text-decoration: none;
	vertical-align: middle;

	box-shadow: 0 1px 5px rgba(34, 168, 85, 0.28);
	cursor: pointer;
	transition: box-shadow 0.18s ease, transform 0.13s ease;
}

body .ma-csu-wrapper .ma-csu-upgrade-btn:hover {
	box-shadow: 0 3px 10px rgba(34, 168, 85, 0.38);
	transform: translateY(-1px);
	color: #fff;
	background: linear-gradient(135deg, #2ecc71 0%, #22a855 100%);
}

body .ma-csu-wrapper .ma-csu-upgrade-btn:active,
body .ma-csu-wrapper .ma-csu-upgrade-btn:focus {
	transform: translateY(0);
	box-shadow: 0 1px 4px rgba(34, 168, 85, 0.20);
	color: #fff;
	outline: none;
}

body .ma-csu-wrapper .ma-csu-upgrade-btn:focus-visible {
	outline: 2px solid #27ae60;
	outline-offset: 2px;
	box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.2);
}

/* ---------------------------------------------------------------------------
   Loading state
   --------------------------------------------------------------------------- */

body .ma-csu-wrapper.ma-csu-loading .ma-csu-upgrade-btn {
	opacity: 0.45;
	cursor: wait;
	pointer-events: none;
}

/* ---------------------------------------------------------------------------
   Error
   --------------------------------------------------------------------------- */

body .ma-csu-wrapper .ma-csu-error {
	display: inline-block;
	margin-top: 4px;
	padding: 2px 10px;
	background: #fff5f5;
	border: 1px solid #fcc;
	border-radius: 999px;
	color: #c0392b;
	font-size: 10px;
	line-height: 1.4;
}
