/**
 * Checkout Simulator for WooCommerce — admin styles (WordPress.com design language)
 */

/* Design tokens */
.habibi-wpcom-style {
	--habibi-bg: #f6f7f7;
	--habibi-bg-panel: #fff;
	--habibi-border: #dcdcde;
	--habibi-border-light: #e2e2e4;
	--habibi-text: #1d2327;
	--habibi-text-secondary: #646970;
	--habibi-primary: #0073aa;
	--habibi-primary-hover: #005a87;
	--habibi-focus: #0073aa;
	--habibi-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, sans-serif;
	--habibi-space-xs: 4px;
	--habibi-space-sm: 8px;
	--habibi-space-md: 16px;
	--habibi-space-lg: 24px;
	--habibi-space-xl: 32px;
	--habibi-radius: 4px;
	--habibi-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Base wrap */
.habibi-checkout-simulator-wrap.habibi-wpcom-style {
	max-width: 1200px;
	font-family: var(--habibi-font);
	color: var(--habibi-text);
}

.habibi-cs-page-title {
	font-size: 23px;
	font-weight: 400;
	margin: 0 0 var(--habibi-space-xs);
	line-height: 1.3;
}

.habibi-cs-page-description {
	color: var(--habibi-text-secondary);
	font-size: 14px;
	margin: 0 0 var(--habibi-space-lg);
	line-height: 1.5;
}

/* Single-column layout */
.habibi-cs-main {
	margin-top: var(--habibi-space-md);
	display: flex;
	flex-direction: column;
	gap: var(--habibi-space-lg);
	max-width: 700px;
}

/* Panels */
.habibi-cs-panel {
	background: var(--habibi-bg-panel);
	border: 1px solid var(--habibi-border);
	border-radius: var(--habibi-radius);
	box-shadow: var(--habibi-shadow);
	padding: var(--habibi-space-lg);
}

.habibi-cs-panel-title {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--habibi-text-secondary);
	margin: 0 0 var(--habibi-space-md);
	padding: 0;
	line-height: 1.4;
}

/* Form */
.habibi-cs-form .habibi-cs-field {
	margin-bottom: var(--habibi-space-md);
}

.habibi-cs-form .habibi-cs-field:last-child {
	margin-bottom: 0;
}

.habibi-cs-field-group {
	margin-bottom: var(--habibi-space-md);
	padding: var(--habibi-space-md) 0;
	border-top: 1px solid var(--habibi-border-light);
}

.habibi-cs-field-group .habibi-cs-field {
	margin-bottom: var(--habibi-space-sm);
}

.habibi-cs-field-group .habibi-cs-field:last-child {
	margin-bottom: 0;
}

.habibi-cs-field-group-title {
	display: block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--habibi-text-secondary);
	margin: 0 0 var(--habibi-space-md);
	padding: 0;
	line-height: 1.4;
}

.habibi-cs-label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: var(--habibi-text);
	margin-bottom: var(--habibi-space-xs);
}

.habibi-cs-input,
.habibi-cs-select {
	width: 100%;
	max-width: 400px;
	padding: 8px 12px;
	font-size: 14px;
	font-family: var(--habibi-font);
	line-height: 1.4;
	color: var(--habibi-text);
	background: #fff;
	border: 1px solid var(--habibi-border);
	border-radius: var(--habibi-radius);
	box-sizing: border-box;
}

.habibi-cs-input:focus,
.habibi-cs-select:focus {
	border-color: var(--habibi-focus);
	box-shadow: 0 0 0 1px var(--habibi-focus);
	outline: none;
}

.habibi-cs-help {
	font-size: 12px;
	color: var(--habibi-text-secondary);
	margin: var(--habibi-space-xs) 0 0;
	line-height: 1.4;
}

.habibi-cs-field-inline {
	display: inline-block;
	vertical-align: top;
	margin-right: var(--habibi-space-md);
}
.habibi-cs-field-inline .habibi-cs-input {
	max-width: 160px;
}

/* Buttons */
.habibi-cs-btn {
	display: inline-block;
	padding: 8px 16px;
	font-size: 13px;
	font-family: var(--habibi-font);
	font-weight: 500;
	line-height: 1.4;
	border-radius: var(--habibi-radius);
	cursor: pointer;
	border: none;
	transition: background 0.15s ease, color 0.15s ease;
}

.habibi-cs-btn-primary {
	background: var(--habibi-primary);
	color: #fff;
}
.habibi-cs-btn-primary:hover {
	background: var(--habibi-primary-hover);
	color: #fff;
}

.habibi-cs-btn-secondary {
	background: var(--habibi-bg);
	color: var(--habibi-text);
	border: 1px solid var(--habibi-border);
}
.habibi-cs-btn-secondary:hover {
	background: var(--habibi-border-light);
	color: var(--habibi-text);
}

.habibi-cs-actions {
	display: flex;
	align-items: center;
	gap: var(--habibi-space-sm);
	padding-top: var(--habibi-space-md);
	border-top: 1px solid var(--habibi-border-light);
}

/* Product selector */
.habibi-cs-product-selector {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--habibi-space-sm);
	margin-bottom: var(--habibi-space-sm);
}
.habibi-cs-product-selector .habibi-cs-input {
	flex: 1;
	min-width: 220px;
	max-width: 320px;
}

/* Coupon selector: Select coupons button only */
.habibi-cs-coupon-selector {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--habibi-space-sm);
}

/* Simulation products table (below "Simulate" heading) */
.habibi-cs-products-table-wrap {
	margin-top: var(--habibi-space-sm);
	border: 1px solid var(--habibi-border);
	border-radius: var(--habibi-radius);
	background: var(--habibi-bg-panel);
	overflow: hidden;
}
.habibi-cs-products-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.habibi-cs-products-table th,
.habibi-cs-products-table td {
	padding: 8px 12px;
	text-align: left;
	border-bottom: 1px solid var(--habibi-border-light);
	vertical-align: middle;
}
.habibi-cs-products-table th {
	font-weight: 600;
	color: var(--habibi-text-secondary);
	background: var(--habibi-bg);
}
.habibi-cs-products-table tr:last-child td {
	border-bottom: none;
}
.habibi-cs-products-table .habibi-cs-col-qty {
	width: 72px;
}
.habibi-cs-products-table .habibi-cs-col-price {
	width: 100px;
	white-space: nowrap;
}
.habibi-cs-products-table .habibi-cs-col-actions {
	width: 80px;
	text-align: right;
}
.habibi-cs-products-table .habibi-cs-product-name {
	min-width: 0;
}
.habibi-cs-products-table .habibi-cs-product-qty {
	width: 56px;
	padding: 6px 8px;
	font-size: 13px;
	border: 1px solid var(--habibi-border);
	border-radius: var(--habibi-radius);
	box-sizing: border-box;
}
.habibi-cs-products-table .habibi-cs-product-remove {
	padding: 4px 10px;
	font-size: 12px;
	background: transparent;
	color: var(--habibi-text-secondary);
	border: 1px solid var(--habibi-border);
	border-radius: var(--habibi-radius);
	cursor: pointer;
}
.habibi-cs-products-table .habibi-cs-product-remove:hover {
	background: var(--habibi-bg);
	color: var(--habibi-text);
}

/* Simulation coupons table (below "Select coupons" button) */
.habibi-cs-coupons-table-wrap {
	margin-top: var(--habibi-space-sm);
	border: 1px solid var(--habibi-border);
	border-radius: var(--habibi-radius);
	background: var(--habibi-bg-panel);
	overflow: hidden;
}
.habibi-cs-coupons-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.habibi-cs-coupons-table th,
.habibi-cs-coupons-table td {
	padding: 8px 12px;
	text-align: left;
	border-bottom: 1px solid var(--habibi-border-light);
	vertical-align: middle;
}
.habibi-cs-coupons-table th {
	font-weight: 600;
	color: var(--habibi-text-secondary);
	background: var(--habibi-bg);
}
.habibi-cs-coupons-table tr:last-child td {
	border-bottom: none;
}
.habibi-cs-coupons-table .habibi-cs-col-discount-type {
	width: 140px;
}
.habibi-cs-coupons-table .habibi-cs-col-value {
	width: 100px;
	white-space: nowrap;
}
.habibi-cs-coupons-table .habibi-cs-col-actions {
	width: 80px;
	text-align: right;
}
.habibi-cs-coupons-table .habibi-cs-coupon-code {
	min-width: 0;
}
.habibi-cs-coupons-table .habibi-cs-coupon-value-cell {
	color: var(--habibi-text-secondary);
}
.habibi-cs-coupons-table .habibi-cs-product-remove {
	padding: 4px 10px;
	font-size: 12px;
	background: transparent;
	color: var(--habibi-text-secondary);
	border: 1px solid var(--habibi-border);
	border-radius: var(--habibi-radius);
	cursor: pointer;
}
.habibi-cs-coupons-table .habibi-cs-product-remove:hover {
	background: var(--habibi-bg);
	color: var(--habibi-text);
}

/*
 * Add products modal
 * We use custom CSS here because: (1) the plugin uses habibi design tokens (--habibi-*)
 * that wp-components does not provide; (2) the Modal component has no built-in footer slot—
 * children are rendered in a single .components-modal__children-container, so we use
 * WP class names (.components-modal__content, .components-modal__children-container) and
 * add layout (flex, sticky footer, scrollable body) and tokens via this file.
 */
.components-modal__frame.habibi-cs-add-products-modal {
	width: 90vw;
	max-width: 900px;
}
.habibi-cs-add-products-modal .components-modal__content {
	display: flex;
	flex-direction: column;
	max-height: 85vh;
	padding: var(--habibi-space-lg);
	box-sizing: border-box;
}
.habibi-cs-add-products-modal .components-modal__children-container {
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.habibi-cs-add-products-modal .habibi-cs-modal-body {
	display: flex;
	flex-direction: column;
	min-height: 0;
	flex: 1;
	padding: 1em;
}
.habibi-cs-add-products-modal .habibi-cs-modal-filter {
	margin-bottom: var(--habibi-space-md);
}
.habibi-cs-add-products-modal .habibi-cs-modal-filter .components-text-control__input,
.habibi-cs-add-products-modal .habibi-cs-modal-filter .habibi-cs-input {
	width: 100%;
	max-width: none;
}
.habibi-cs-add-products-modal .habibi-cs-modal-table-wrap {
	flex: 1 1 0;
	min-height: 220px;
	max-height: 50vh;
	overflow: auto;
	border: 1px solid var(--habibi-border);
	border-radius: var(--habibi-radius);
	background: var(--habibi-bg-panel);
}
.habibi-cs-add-products-modal .habibi-cs-modal-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--habibi-space-md);
	padding: var(--habibi-space-lg);
	margin: 0;
	color: var(--habibi-text-secondary);
}
.habibi-cs-add-products-modal .habibi-cs-modal-loading p {
	margin: 0;
}
.habibi-cs-add-products-modal .habibi-cs-modal-products-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.habibi-cs-add-products-modal .habibi-cs-modal-products-table th,
.habibi-cs-add-products-modal .habibi-cs-modal-products-table td {
	padding: 8px 12px;
	text-align: left;
	border-bottom: 1px solid var(--habibi-border-light);
	vertical-align: middle;
}
.habibi-cs-add-products-modal .habibi-cs-modal-products-table th {
	font-weight: 600;
	color: var(--habibi-text-secondary);
	background: var(--habibi-bg);
}
.habibi-cs-add-products-modal .habibi-cs-modal-products-table .habibi-cs-col-checkbox {
	width: 40px;
	text-align: center;
}
.habibi-cs-add-products-modal .habibi-cs-modal-products-table .habibi-cs-col-qty {
	width: 72px;
}
.habibi-cs-add-products-modal .habibi-cs-modal-products-table .habibi-cs-col-price {
	width: 120px;
	white-space: nowrap;
}
.habibi-cs-add-products-modal .habibi-cs-modal-products-table .habibi-cs-product-name {
	min-width: 0;
}
.habibi-cs-row-label {
	cursor: pointer;
	display: block;
}
.habibi-cs-add-products-modal .habibi-cs-modal-products-table .habibi-cs-product-qty {
	width: 56px;
	padding: 6px 8px;
	font-size: 13px;
	border: 1px solid var(--habibi-border);
	border-radius: var(--habibi-radius);
	box-sizing: border-box;
}
.habibi-cs-add-products-modal .habibi-cs-modal-products-table .habibi-cs-price-readonly {
	color: var(--habibi-text-secondary);
}
.habibi-cs-add-products-modal .habibi-cs-modal-empty {
	text-align: center;
	color: var(--habibi-text-secondary);
	padding: var(--habibi-space-xl) !important;
}
.habibi-cs-add-products-modal .habibi-cs-modal-footer {
	flex-shrink: 0;
	display: flex;
	justify-content: flex-end;
	gap: var(--habibi-space-xl);
	align-items: center;
	padding: var(--habibi-space-md) 0 0;
	margin-top: auto;
	border-top: 1px solid var(--habibi-border-light);
	background: var(--habibi-bg);
	position: sticky;
	bottom: 0;
	z-index: 1;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.04);
	padding: 1em;
}

.habibi-cs-add-products-modal .habibi-cs-modal-footer .habibi-cs-btn-secondary {
	margin: 0 1em;
}

/*
 * Select coupons modal — same layout and look as Add products modal
 * (frame size, flex content, sticky footer, table styling).
 */
.components-modal__frame.habibi-cs-select-coupons-modal {
	width: 90vw;
	max-width: 900px;
}
.habibi-cs-select-coupons-modal .components-modal__content {
	display: flex;
	flex-direction: column;
	max-height: 85vh;
	padding: var(--habibi-space-lg);
	box-sizing: border-box;
}
.habibi-cs-select-coupons-modal .components-modal__children-container {
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-body {
	display: flex;
	flex-direction: column;
	min-height: 0;
	flex: 1;
	padding: 1em;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-filter {
	margin-bottom: var(--habibi-space-md);
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-filter .components-text-control__input,
.habibi-cs-select-coupons-modal .habibi-cs-modal-filter .habibi-cs-input {
	width: 100%;
	max-width: none;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-table-wrap {
	flex: 1 1 0;
	min-height: 220px;
	max-height: 50vh;
	overflow: auto;
	border: 1px solid var(--habibi-border);
	border-radius: var(--habibi-radius);
	background: var(--habibi-bg-panel);
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--habibi-space-md);
	padding: var(--habibi-space-lg);
	margin: 0;
	color: var(--habibi-text-secondary);
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-loading p {
	margin: 0;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-coupons-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-coupons-table th,
.habibi-cs-select-coupons-modal .habibi-cs-modal-coupons-table td {
	padding: 8px 12px;
	text-align: left;
	border-bottom: 1px solid var(--habibi-border-light);
	vertical-align: middle;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-coupons-table th {
	font-weight: 600;
	color: var(--habibi-text-secondary);
	background: var(--habibi-bg);
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-coupons-table .habibi-cs-col-checkbox {
	width: 40px;
	text-align: center;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-coupons-table .habibi-cs-col-discount-type {
	width: 140px;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-coupons-table .habibi-cs-col-value {
	width: 100px;
	white-space: nowrap;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-coupons-table .habibi-cs-coupon-title-cell {
	min-width: 0;
	text-transform: none;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-coupons-table .habibi-cs-coupon-value-cell {
	color: var(--habibi-text-secondary);
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-empty {
	text-align: center;
	color: var(--habibi-text-secondary);
	padding: var(--habibi-space-xl) !important;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-footer {
	flex-shrink: 0;
	display: flex;
	justify-content: flex-end;
	gap: var(--habibi-space-xl);
	align-items: center;
	padding: var(--habibi-space-md) 0 0;
	margin-top: auto;
	border-top: 1px solid var(--habibi-border-light);
	background: var(--habibi-bg);
	position: sticky;
	bottom: 0;
	z-index: 1;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.04);
	padding: 1em;
}
.habibi-cs-select-coupons-modal .habibi-cs-modal-footer .habibi-cs-btn-secondary {
	margin: 0 1em;
}

/* Results panel — section/row layout (label left, value right) */
.habibi-cs-results-body {
	font-size: 14px;
	line-height: 1.5;
}

.habibi-cs-results-section {
	border-top: 1px solid var(--habibi-border-light);
	padding: var(--habibi-space-md) 0;
}
.habibi-cs-results-section:first-child {
	padding-top: 0;
	border-top: none;
}

.habibi-cs-results-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: var(--habibi-space-md);
	margin: 0 0 var(--habibi-space-xs);
}
.habibi-cs-results-row:last-child {
	margin-bottom: 0;
}
.habibi-cs-results-label {
	font-weight: 500;
	color: var(--habibi-text);
	flex-shrink: 0;
	min-width: 0;
}
.habibi-cs-results-row-label-normal .habibi-cs-results-label {
	font-weight: 400;
}
.habibi-cs-results-value {
	text-align: right;
	white-space: nowrap;
	min-width: 0;
}
.habibi-cs-results-value a,
.habibi-cs-results-label a.habibi-cs-results-link-external {
	white-space: normal;
	word-break: break-word;
}
.habibi-cs-results-value a {
	cursor: pointer;
}

.habibi-cs-results-label a,
.habibi-cs-results-shipping-heading a,
.habibi-cs-results-value a,
.habibi-cs-coupon-card a {
	color: var(--habibi-primary);
	text-decoration: underline;
	cursor: pointer;
}
.habibi-cs-results-label a:hover,
.habibi-cs-results-shipping-heading a:hover,
.habibi-cs-results-value a:hover,
.habibi-cs-coupon-card a:hover {
	color: var(--habibi-primary-hover);
	text-decoration: underline;
}
.habibi-cs-results-link-external::after {
	content: " \2197";
	font-size: 0.85em;
	opacity: 0.8;
}

.habibi-cs-results-tooltip-anchor {
	display: inline-block;
	margin-left: 2px;
	cursor: help;
	color: var(--habibi-text-secondary);
	font-size: 12px;
	line-height: 1;
}

.habibi-cs-results-note {
	color: var(--habibi-text-secondary);
	font-size: 13px;
	margin: var(--habibi-space-xs) 0 0;
	padding-left: 0;
}

.habibi-cs-results-section-heading {
	font-weight: 600;
	font-size: 13px;
	color: var(--habibi-text);
	margin-bottom: var(--habibi-space-sm);
}

.habibi-cs-results-shipping-heading {
	font-weight: 500;
	color: var(--habibi-text);
	margin-bottom: var(--habibi-space-sm);
}
/* Link styles for shipping heading are in .habibi-cs-results-label a block above */

.habibi-cs-results-shipping-radios {
	display: flex;
	flex-direction: column;
	gap: var(--habibi-space-xs);
}
.habibi-cs-results-shipping-option {
	display: flex;
	align-items: center;
	gap: var(--habibi-space-sm);
	cursor: pointer;
	font-size: 14px;
}
.habibi-cs-results-shipping-option input[type="radio"] {
	margin: 0;
}
.habibi-cs-results-shipping-option-label {
	flex: 1;
}
.habibi-cs-results-shipping-option-cost {
	font-weight: 500;
	white-space: nowrap;
}

.habibi-cs-results-list {
	list-style: none;
	margin: var(--habibi-space-xs) 0 0;
	padding: 0;
}
.habibi-cs-results-list li {
	margin: 2px 0;
}

.habibi-cs-results-muted {
	color: var(--habibi-text-secondary);
	font-style: italic;
}

/* Totals section (uses same row layout) */
.habibi-cs-results-section.habibi-cs-totals {
	padding: var(--habibi-space-md) 0;
}
.habibi-cs-totals .habibi-cs-results-row.habibi-cs-totals-total {
	font-size: 15px;
	font-weight: 600;
	margin-top: var(--habibi-space-sm);
	margin-bottom: 0;
	padding-top: var(--habibi-space-sm);
	border-top: 1px solid var(--habibi-border);
}
.habibi-cs-totals .habibi-cs-results-row.habibi-cs-totals-total .habibi-cs-results-label {
	font-weight: 600;
}
/* Accounting-style colors: negative (discount) = red, positive amounts = green */
.habibi-cs-totals .habibi-cs-results-row.habibi-cs-totals-discount .habibi-cs-results-value {
	color: #d63638;
}
.habibi-cs-totals .habibi-cs-results-row.habibi-cs-totals-amount-positive .habibi-cs-results-value {
	color: #00a32a;
}
.habibi-cs-conflicts {
	background: #fcf0f1;
	border-left: 4px solid #d63638;
	padding: var(--habibi-space-md);
	margin: var(--habibi-space-md) 0;
	border-radius: 0 var(--habibi-radius) var(--habibi-radius) 0;
}
.habibi-cs-conflicts ul {
	margin: var(--habibi-space-xs) 0 0 1em;
	padding: 0;
}
.habibi-cs-gateway-enabled {
	color: var(--habibi-primary);
}
.habibi-cs-gateway-disabled {
	color: var(--habibi-text-secondary);
	font-style: italic;
}
.habibi-cs-log-issues {
	background: #fcf9e8;
	border-left-color: #dba617;
}
.habibi-cs-log-issues ul li {
	word-break: break-word;
	font-size: 12px;
	margin: 0.25em 0;
}
.habibi-cs-log-issues code {
	font-size: 11px;
	background: rgba(0,0,0,0.06);
	padding: 1px 4px;
	border-radius: 2px;
}

/* Warning notice when products are not configured */
.habibi-cs-notice-warning {
	background: #fcf9e8;
	border-left: 4px solid #dba617;
	padding: var(--habibi-space-md);
	border-radius: 0 var(--habibi-radius) var(--habibi-radius) 0;
}
.habibi-cs-notice-warning p {
	margin: 0;
	font-size: 13px;
	color: var(--habibi-text);
}

/* Info notice (e.g. coupons optional) */
.habibi-cs-notice-info {
	background: #f0f6fc;
	border-left: 4px solid #2271b1;
	padding: var(--habibi-space-md);
	border-radius: 0 var(--habibi-radius) var(--habibi-radius) 0;
}
.habibi-cs-notice-info p {
	margin: 0;
	font-size: 13px;
	color: var(--habibi-text);
}

/* Coupon details in results */
.habibi-cs-coupon-details {
	margin: var(--habibi-space-md) 0;
}
.habibi-cs-coupon-details > strong {
	display: block;
	margin-bottom: var(--habibi-space-sm);
}
.habibi-cs-coupon-card {
	background: var(--habibi-bg);
	border: 1px solid var(--habibi-border-light);
	border-radius: var(--habibi-radius);
	padding: var(--habibi-space-md);
	margin-bottom: var(--habibi-space-sm);
}
.habibi-cs-coupon-card:last-child {
	margin-bottom: 0;
}
.habibi-cs-coupon-code {
	font-weight: 600;
	font-size: 14px;
}
.habibi-cs-coupon-card a {
	margin-left: var(--habibi-space-sm);
	font-size: 13px;
}
.habibi-cs-coupon-meta {
	list-style: none;
	margin: var(--habibi-space-sm) 0 0;
	padding: 0;
	font-size: 13px;
	color: var(--habibi-text-secondary);
}
.habibi-cs-coupon-meta li {
	margin: 2px 0;
}
