/*
 * Suppy Live Rental Cards — namespaced front-end styles.
 *
 * v1.2 visual modernisation:
 *   - Gradient brand-color header band on .suppy-rentals__title.
 *   - Drop-shadowed outer card with rounded corners and a subtle border.
 *   - Mobile-first responsive layout (single-column → grid at 640px+).
 *   - Cards with hover lift on pointer-capable devices.
 *   - Modern table head (brand color, white text), striped tbody rows.
 *   - Pill-styled footer-meta badges, leading check-mark on trust items.
 *   - Refined summary / faq / trust / cta shortcode styling.
 *
 * Design principles:
 *   - All selectors are scoped under .suppy-* so the rules cannot bleed
 *     into Avada or any other theme. No reset, no element-only selectors,
 *     no body/html overrides, no !important except the single documented
 *     v1.0 exception for the fallback paragraph.
 *   - Every color, radius and gap is sourced from a CSS custom property
 *     with a hard-coded fallback. The Brand class (Phase I) emits an inline
 *     style element on wp_head with :root variable overrides from saved
 *     admin settings — themes can also override the same variables to
 *     retake control. (The literal end-of-style substring is deliberately
 *     avoided in this comment because some preview contexts inline the CSS
 *     file inside a real style tag, which would otherwise close the inlined
 *     block early.)
 *   - color-mix(in srgb, …) is used for hover tints and translucent
 *     backgrounds. Every color-mix declaration is preceded by a solid
 *     fallback declaration so legacy browsers still render usable colors.
 *   - All padding / font-size values use rem. The only hardcoded px values
 *     are 1px borders.
 */

:root {
	--suppy-color-primary: #0EA5B7;
	--suppy-color-accent: #FFB400;
	--suppy-color-text: #101720;
	--suppy-color-surface: #FFFFFF;
	--suppy-color-border: #E5EAEF;
	--suppy-radius: 12px;
	--suppy-gap: 12px;
}

/* =====================================================================
 *  Outer wrapper — drop-shadow card with rounded corners
 * =================================================================== */

.suppy-rentals {
	display: block;
	margin: 0 0 1.5rem;
	padding: 0 0 1rem;
	font: inherit;
	color: var(--suppy-color-text, #101720);
	background: var(--suppy-color-surface, #ffffff);
	border: 1px solid var(--suppy-color-border, #e5eaef);
	border-radius: var(--suppy-radius, 12px);
	box-shadow: 0 1px 3px rgba(16, 23, 32, 0.06), 0 4px 12px rgba(16, 23, 32, 0.04);
	overflow: hidden;
	box-sizing: border-box;
}

@media (min-width: 960px) {

	.suppy-rentals {
		max-width: 1100px;
	}
}

/* =====================================================================
 *  Title band — gradient brand-color header
 * =================================================================== */

.suppy-rentals__title {
	margin: 0;
	padding: 1rem 1.25rem;
	font: inherit;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.25;
	color: #ffffff;
	/* Solid-color fallback for browsers without color-mix support. */
	background: var(--suppy-color-primary, #0EA5B7);
	/* Modern gradient: primary → 70% primary blended with accent. */
	background: linear-gradient(135deg,
		var(--suppy-color-primary, #0EA5B7) 0%,
		color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 70%, var(--suppy-color-accent, #FFB400)) 100%);
	border-radius: var(--suppy-radius, 12px) var(--suppy-radius, 12px) 0 0;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {

	.suppy-rentals__title {
		padding: 1.125rem 1.5rem;
		font-size: 1.375rem;
	}
}

/* =====================================================================
 *  Location line — compact single-line beneath the header band
 *  (v1.2.4 TI6: replaces the old multi-line aside with image)
 * =================================================================== */

.suppy-rentals__location {
	margin: 0;
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	color: #4b5563;
	color: color-mix(in srgb, var(--suppy-color-text, #101720) 70%, transparent);
	box-sizing: border-box;
}

@media (min-width: 640px) {

	.suppy-rentals__location {
		padding: 0.5rem 1.5rem;
	}
}

/* Compact variant: single inline line (address · map link). */
.suppy-rentals__location--compact {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.suppy-rentals__location-address {
	font-weight: normal;
}

.suppy-rentals__location-map {
	color: var(--suppy-color-primary, #0EA5B7);
	font-size: 0.8125rem;
	text-decoration: underline;
}

.suppy-rentals__location-map:hover,
.suppy-rentals__location-map:focus {
	color: var(--suppy-color-accent, #FFB400);
}

/* Legacy selectors kept for any site that overrides them; new renders no longer emit these. */
.suppy-rentals__address {
	margin: 0 0 0.25rem 0;
	font-style: normal;
	font-weight: 600;
}

.suppy-rentals__hours {
	margin: 0 0 0.35rem 0;
	color: #6b7280;
	color: color-mix(in srgb, var(--suppy-color-text, #101720) 65%, transparent);
}

.suppy-rentals__map-link {
	display: inline-block;
	margin-top: 0.25rem;
	color: var(--suppy-color-primary, #0EA5B7);
	font-weight: 600;
	text-decoration: underline;
}

.suppy-rentals__map-link:hover,
.suppy-rentals__map-link:focus {
	color: var(--suppy-color-accent, #FFB400);
}

/* =====================================================================
 *  Bucket labels (section labels above each cards row / table group)
 * =================================================================== */

.suppy-rental-cards__bucket-label {
	margin: 0;
	padding: 0.875rem 1.25rem 0.5rem;
	font: inherit;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--suppy-color-primary, #0EA5B7);
}

@media (min-width: 640px) {

	.suppy-rental-cards__bucket-label {
		padding: 1rem 1.5rem 0.5rem;
	}
}

/* =====================================================================
 *  Cards grid
 * =================================================================== */

.suppy-rental-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin: 0;
	padding: 0 1.25rem 1rem;
	list-style: none;
}

@media (min-width: 640px) {

	.suppy-rental-cards {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
		gap: 1rem;
		padding: 0 1.5rem 1rem;
	}
}

.suppy-rental-card {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	min-height: 180px;
	padding: 1rem;
	background: var(--suppy-color-surface, #ffffff);
	color: var(--suppy-color-text, #101720);
	border: 1px solid var(--suppy-color-border, #e5eaef);
	border-radius: 8px;
	box-sizing: border-box;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

@media (hover: hover) {

	.suppy-rental-card:hover {
		transform: translateY(-2px);
		border-color: color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 30%, var(--suppy-color-border, #e5eaef));
		box-shadow: 0 6px 16px rgba(16, 23, 32, 0.08);
	}
}

.suppy-rental-card__name {
	margin: 0;
	font: inherit;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.3;
	color: var(--suppy-color-text, #101720);
}

.suppy-rental-card__price {
	margin: 0;
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.35rem;
	line-height: 1.1;
}

.suppy-rental-card__price-value {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--suppy-color-text, #101720);
}

.suppy-rental-card__price-unit {
	font-size: 0.875rem;
	font-weight: 400;
	/* Solid muted fallback first; modern browsers resolve color-mix. */
	color: #6b7280;
	color: color-mix(in srgb, var(--suppy-color-text, #101720) 60%, transparent);
}

.suppy-rental-card__included {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #4b5563;
	color: color-mix(in srgb, var(--suppy-color-text, #101720) 75%, transparent);
}

.suppy-rental-card__cta {
	display: inline-block;
	margin-top: auto;
	padding: 0.625rem 1rem;
	width: 100%;
	background: var(--suppy-color-primary, #0EA5B7);
	color: #ffffff;
	border: 1px solid var(--suppy-color-primary, #0EA5B7);
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
	transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
}

.suppy-rental-card__cta:hover,
.suppy-rental-card__cta:focus {
	/* Slight darkening on hover; fallback to accent, then color-mix override. */
	background: var(--suppy-color-accent, #FFB400);
	background: color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 85%, #000000);
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 3px 8px rgba(16, 23, 32, 0.12);
}

.suppy-rental-card__cta:active {
	transform: translateY(1px);
	box-shadow: none;
}

/* =====================================================================
 *  Table layout
 * =================================================================== */

.suppy-rentals__table-wrap {
	margin: 0;
	padding: 0 1.25rem 1rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
}

@media (min-width: 640px) {

	.suppy-rentals__table-wrap {
		padding: 0 1.5rem 1rem;
	}
}

.suppy-rentals__table {
	/* v1.2.4 TI6: fixed layout so the three columns distribute evenly
	 * regardless of price-string length. */
	table-layout: fixed;
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font: inherit;
	background: var(--suppy-color-surface, #ffffff);
	border: 1px solid var(--suppy-color-border, #e5eaef);
	border-radius: 8px;
	overflow: hidden;
}

/* v1.2.4 TI6: explicit per-column widths for the 3-column default layout.
 * Column 1 = Duration (30%), Column 2 = Price (25%), Column 3 = Booking (45%). */
.suppy-rentals__table th:nth-child(1),
.suppy-rentals__table td:nth-child(1) {
	width: 30%;
}

.suppy-rentals__table th:nth-child(2),
.suppy-rentals__table td:nth-child(2) {
	width: 25%;
}

.suppy-rentals__table th:nth-child(3),
.suppy-rentals__table td:nth-child(3) {
	width: 45%;
	text-align: right;
}

.suppy-rentals__table thead th {
	padding: 0.875rem 1rem;
	background: var(--suppy-color-primary, #0EA5B7);
	color: #ffffff;
	font-weight: 600;
	font-size: 0.9375rem;
	text-align: left;
	border-bottom: 1px solid var(--suppy-color-primary, #0EA5B7);
	vertical-align: middle;
}

.suppy-rentals__table th,
.suppy-rentals__table td {
	padding: 0.875rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--suppy-color-border, #e5eaef);
	vertical-align: middle;
}

.suppy-rentals__table tbody tr:last-child td,
.suppy-rentals__table tbody tr:last-child th {
	border-bottom: 0;
}

/* Alternating row stripes — fallback solid color, then color-mix override. */
.suppy-rentals__table tbody tr:nth-child(odd) {
	background: #f8fbfc;
	background: color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 4%, var(--suppy-color-surface, #ffffff));
}

.suppy-rentals__table tbody tr:nth-child(even) {
	background: var(--suppy-color-surface, #ffffff);
}

/* Bucket-label rows (LOCAL / TOGO group headers inside the table). */
.suppy-rentals__table-bucket th {
	padding: 0.75rem 1rem;
	background: #f5fafb;
	background: color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 8%, var(--suppy-color-surface, #ffffff));
	color: var(--suppy-color-primary, #0EA5B7);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: left;
	border-bottom: 1px solid var(--suppy-color-border, #e5eaef);
}

.suppy-rentals__table-name {
	font-weight: 600;
}

.suppy-rentals__table-price {
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

.suppy-rentals__table-action {
	text-align: right;
}

.suppy-rentals__table-cta {
	display: inline-block;
	padding: 0.45rem 0.9rem;
	background: var(--suppy-color-primary, #0EA5B7);
	color: #ffffff;
	border: 1px solid var(--suppy-color-primary, #0EA5B7);
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s ease, box-shadow 0.15s ease;
}

.suppy-rentals__table-cta:hover,
.suppy-rentals__table-cta:focus {
	background: color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 85%, #000000);
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 3px 8px rgba(16, 23, 32, 0.12);
}

.suppy-rentals__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	white-space: nowrap;
}

/* =====================================================================
 *  Note + updated single-line + combined footer-meta
 * =================================================================== */

.suppy-rentals__note {
	margin: 0;
	padding: 0.75rem 1.25rem 0;
	font-size: 0.9rem;
	color: #4b5563;
	color: color-mix(in srgb, var(--suppy-color-text, #101720) 70%, transparent);
}

@media (min-width: 640px) {

	.suppy-rentals__note {
		padding: 0.75rem 1.5rem 0;
	}
}

.suppy-rentals__updated {
	margin: 0;
	padding: 0.5rem 1.25rem 0;
	font-size: 0.8125rem;
	color: #6b7280;
	color: color-mix(in srgb, var(--suppy-color-text, #101720) 55%, transparent);
}

@media (min-width: 640px) {

	.suppy-rentals__updated {
		padding: 0.5rem 1.5rem 0;
	}
}

/* v1.1: combined footer-meta line ("Avatud 24/7 · Värskendatud HH:MM"). */
.suppy-rentals__footer-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	margin: 0.75rem 0 0;
	padding: 0.75rem 1.25rem;
	border-top: 1px solid var(--suppy-color-border, #e5eaef);
	font-size: 0.8125rem;
	color: #4b5563;
	color: color-mix(in srgb, var(--suppy-color-text, #101720) 65%, transparent);
}

@media (min-width: 640px) {

	.suppy-rentals__footer-meta {
		padding: 0.75rem 1.5rem;
	}
}

.suppy-rentals__footer-meta-open,
.suppy-rentals__footer-meta-updated {
	display: inline-block;
	padding: 0.125rem 0.625rem;
	background: rgba(14, 165, 183, 0.08);
	background: color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 8%, transparent);
	border-radius: 999px;
	font-size: 0.8125rem;
}

.suppy-rentals__footer-meta-open {
	color: var(--suppy-color-primary, #0EA5B7);
	font-weight: 600;
}

.suppy-rentals__footer-meta-updated {
	color: #4b5563;
	color: color-mix(in srgb, var(--suppy-color-text, #101720) 70%, transparent);
	font-variant-numeric: tabular-nums;
}

/* =====================================================================
 *  Summary shortcode — bigger leading paragraph with brand left rule
 * =================================================================== */

.suppy-rentals__summary {
	display: block;
	margin: 0 0 1.5rem;
	padding: 1rem 1.25rem;
	background: var(--suppy-color-surface, #ffffff);
	border: 1px solid var(--suppy-color-border, #e5eaef);
	border-left: 4px solid var(--suppy-color-primary, #0EA5B7);
	border-radius: 0 var(--suppy-radius, 12px) var(--suppy-radius, 12px) 0;
	color: var(--suppy-color-text, #101720);
	box-shadow: 0 1px 3px rgba(16, 23, 32, 0.04);
	box-sizing: border-box;
}

@media (min-width: 640px) {

	.suppy-rentals__summary {
		padding: 1.125rem 1.5rem;
	}
}

@media (min-width: 960px) {

	.suppy-rentals__summary {
		max-width: 1100px;
	}
}

.suppy-rentals__summary-text {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
}

/* =====================================================================
 *  FAQ shortcode — accordion-style details/summary list
 * =================================================================== */

.suppy-rentals__faq {
	display: block;
	margin: 0 0 1.5rem;
	color: var(--suppy-color-text, #101720);
	box-sizing: border-box;
}

@media (min-width: 960px) {

	.suppy-rentals__faq {
		max-width: 1100px;
	}
}

.suppy-rentals__faq-list {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.suppy-rentals__faq-item {
	padding: 0.875rem 1.125rem;
	background: var(--suppy-color-surface, #ffffff);
	border: 1px solid var(--suppy-color-border, #e5eaef);
	border-radius: var(--suppy-radius, 12px);
	box-shadow: 0 1px 2px rgba(16, 23, 32, 0.03);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

@media (hover: hover) {

	.suppy-rentals__faq-item:hover {
		border-color: color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 25%, var(--suppy-color-border, #e5eaef));
		box-shadow: 0 3px 8px rgba(16, 23, 32, 0.05);
	}
}

.suppy-rentals__faq-question {
	margin: 0 0 0.4rem;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.35;
	color: var(--suppy-color-text, #101720);
}

.suppy-rentals__faq-answer {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #374151;
	color: color-mix(in srgb, var(--suppy-color-text, #101720) 88%, transparent);
}

/* =====================================================================
 *  Trust shortcode — pill list with leading check-mark
 * =================================================================== */

.suppy-rentals__trust {
	display: block;
	margin: 0 0 1.5rem;
	box-sizing: border-box;
}

@media (min-width: 960px) {

	.suppy-rentals__trust {
		max-width: 1100px;
	}
}

.suppy-rentals__trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.suppy-rentals__trust-item {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.875rem;
	background: rgba(14, 165, 183, 0.08);
	background: color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 8%, transparent);
	border: 1px solid transparent;
	border-color: color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 18%, transparent);
	border-radius: 999px;
	color: var(--suppy-color-text, #101720);
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.3;
}

.suppy-rentals__trust-item::before {
	content: "\2713\00A0";
	margin-right: 0.125rem;
	color: var(--suppy-color-primary, #0EA5B7);
	font-weight: 700;
}

/* =====================================================================
 *  CTA shortcode — hero-sized primary button
 * =================================================================== */

.suppy-rentals__cta {
	display: block;
	margin: 0 0 1.5rem;
	box-sizing: border-box;
}

@media (min-width: 960px) {

	.suppy-rentals__cta {
		max-width: 1100px;
	}
}

.suppy-cta-button {
	display: inline-block;
	min-width: 200px;
	padding: 0.875rem 1.5rem;
	background: var(--suppy-color-primary, #0EA5B7);
	color: #ffffff;
	border: 1px solid var(--suppy-color-primary, #0EA5B7);
	border-radius: 6px;
	font-weight: 600;
	font-size: 1.05rem;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 2px 6px rgba(16, 23, 32, 0.08);
	transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
}

.suppy-cta-button:hover,
.suppy-cta-button:focus {
	background: var(--suppy-color-accent, #FFB400);
	background: color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 85%, #000000);
	color: #ffffff;
	border-color: var(--suppy-color-primary, #0EA5B7);
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(16, 23, 32, 0.14);
}

.suppy-cta-button:active {
	transform: translateY(1px);
	box-shadow: 0 1px 3px rgba(16, 23, 32, 0.1);
}

/* =====================================================================
 *  Fallback section
 * =================================================================== */

.suppy-rentals--fallback {
	padding: 1.25rem 1.5rem;
	background: #fffaf0;
	background: color-mix(in srgb, var(--suppy-color-accent, #FFB400) 6%, var(--suppy-color-surface, #ffffff));
	border: 1px dashed var(--suppy-color-border, #e5eaef);
	border-radius: var(--suppy-radius, 12px);
	box-shadow: 0 1px 3px rgba(16, 23, 32, 0.04);
}

.suppy-rentals--fallback .suppy-rentals__title {
	background: transparent;
	color: var(--suppy-color-text, #101720);
	padding: 0 0 0.5rem;
	box-shadow: none;
	border-radius: 0;
	font-size: 1.125rem;
}

.suppy-rentals__fallback {
	display: block !important; /* exception: ensure visibility if a theme tries to hide .suppy-rentals--fallback content */
	margin: 0 0 0.875rem 0;
	color: var(--suppy-color-text, #101720);
	font-size: 0.95rem;
	line-height: 1.5;
}

.suppy-rentals__fallback-cta {
	display: inline-block;
	padding: 0.625rem 1.125rem;
	background: var(--suppy-color-primary, #0EA5B7);
	color: #ffffff;
	border: 1px solid var(--suppy-color-primary, #0EA5B7);
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.2;
	text-decoration: none;
	transition: background 0.15s ease, box-shadow 0.15s ease;
}

.suppy-rentals__fallback-cta:hover,
.suppy-rentals__fallback-cta:focus {
	background: color-mix(in srgb, var(--suppy-color-primary, #0EA5B7) 85%, #000000);
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 3px 8px rgba(16, 23, 32, 0.12);
}

/* =====================================================================
 *  Cross-link nav (Suppy_Plugin::append_cross_link_nav)
 * =================================================================== */

.suppy-rentals__cross-links {
	margin: 0 0 1.5rem;
	padding: 0.75rem 1.25rem;
	font-size: 0.9rem;
	color: #4b5563;
	color: color-mix(in srgb, var(--suppy-color-text, #101720) 70%, transparent);
}

.suppy-rentals__cross-links a {
	color: var(--suppy-color-primary, #0EA5B7);
	font-weight: 600;
	text-decoration: underline;
}

.suppy-rentals__cross-links a:hover,
.suppy-rentals__cross-links a:focus {
	color: var(--suppy-color-accent, #FFB400);
}

/* =====================================================================
 *  Small-screen fine-tuning (mobile-first defaults already cover most)
 * =================================================================== */

@media (max-width: 480px) {

	.suppy-rentals__title {
		padding: 0.875rem 1rem;
		font-size: 1.125rem;
	}

	.suppy-rental-cards,
	.suppy-rentals__location,
	.suppy-rentals__table-wrap,
	.suppy-rentals__footer-meta,
	.suppy-rentals__note,
	.suppy-rentals__updated {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.suppy-rental-card__price-value {
		font-size: 1.5rem;
	}

	.suppy-rentals__trust-list {
		gap: 0.5rem;
	}

	.suppy-cta-button {
		min-width: 0;
		width: 100%;
	}
}
