.gift-progress-card {
	display: flex;
	align-items: center;
	background: #f6f6f6;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	margin: 24px 0;
	padding: 10px 15px;
	gap: 20px;
}
.gift-progress-card-image {
	flex: 0 0 85px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 85px;
}
.gift-progress-card-image img {
	max-height: 85px;
	max-width: 85px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.gift-progress-card-content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gift-progress-bar-message {
	font-size: 1em;
	margin-bottom: 10px;
	position: static;
	left: unset;
	top: unset;
	height: auto;
	display: block;
}
.gift-progress-bar {
	position: relative;
	background: #d1d1d1;
	border-radius: 15px;
	height: 15px;
	margin-bottom: 0;
	margin-top: 0;
    padding: 3px;
	overflow: hidden;
}
/* Static progress bar fill, no animation */
.gift-progress-bar-fill {
	background: linear-gradient(90deg, #a259c4 0%, #5d0083 100%);
	height: 100%;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
}

.mini-cart-wrapper .gift-progress-bars {
	.gift-progress-card {
		margin: 10px 0;
	}

	.gift-progress-card-image {
		flex: 0 0 50px;
		height: 50px;

		img {
			max-height: 50px;
			max-width: 50px;
		}
	}

	.gift-progress-bar-message {
		font-size: 0.75em;
		margin-bottom: 6px;
		font-weight: bold;
	}

	.gift-progress-bar {
		height: 10px;
		padding: 1px;
	}
}