/* Singair Mart Lottery — cart & checkout progress bar.
   Mirrors the theme's free-shipping bar proportions so the two stack cleanly. */

.sml-bar {
	display:       block;
	margin:        .75rem 0 0;
	padding:       .85rem 1rem;
	background:    #fffbeb;
	border:        1px solid #fde68a;
	border-radius: 8px;
}

.sml-bar__msg {
	display:     flex;
	align-items: flex-start;
	gap:         .5rem;
	margin:      0 0 .5rem;
	font-size:   .8125rem;
	line-height: 1.45;
	color:       #713f12;
}

.sml-bar__msg strong { font-weight: 800; color: #a16207; white-space: nowrap; }
.sml-bar__icon       { flex-shrink: 0; font-size: .95rem; line-height: 1.4; }

.sml-bar__track {
	height:        7px;
	background:    #fef3c7;
	border-radius: 999px;
	overflow:      hidden;
}

.sml-bar__fill {
	height:        100%;
	border-radius: 999px;
	background:    var(--sml-primary, #ff6a21);
	transition:    width .4s ease;
}

/* Threshold met — nothing left to fill, so drop the track and go green. */
.sml-bar--won {
	background:   #f0fdf4;
	border-color: #bbf7d0;
}
.sml-bar--won .sml-bar__msg        { margin-bottom: 0; color: #166534; }
.sml-bar--won .sml-bar__msg strong { color: #15803d; }

@media (max-width: 480px) {
	.sml-bar      { padding: .7rem .8rem; }
	.sml-bar__msg { font-size: .78rem; }
}
