/* ===== BOTTLES SECTION (Sugar Reset) ===== */
.bottles-section {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	font-family: 'Figtree', Arial, sans-serif;
}

.bottle-card {
	display: block;
	border-radius: 14px;
	overflow: hidden;
	border: 3px solid #8e0000;
	box-shadow: 0 4px 20px rgba(142, 0, 0, .18);
	text-decoration: none;
	color: inherit;
}

.bottle-card:hover {
	text-decoration: none;
	color: inherit;
}

/* mobile order: 2 bottles, 3 bottles, 6 bottles */
.bottle-card:nth-child(1) { order: 3; }
.bottle-card:nth-child(2) { order: 2; }
.bottle-card:nth-child(3) { order: 1; }

.bottle-card .card-body {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 22px;
}

.bottle-card .card-left {
	flex: 0 0 44%;
	text-align: center;
}

.bottle-card .card-left img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.bottle-card .card-left .count {
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: .02em;
	line-height: 1.15;
}

.bottle-card .card-left .supply {
	font-size: .82rem;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: .02em;
}

.bottle-card .card-right {
	flex: 1;
	text-align: center;
}

.bottle-card .price-row {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
}

.bottle-card .price-row .dollar {
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1;
}

.bottle-card .price-row .amount {
	font-size: 4.2rem;
	font-weight: 900;
	line-height: .85;
}

.bottle-card .sep {
	border: none;
	border-top: 2px dotted;
	margin: 10px 0;
	opacity: 1;
}

.bottle-card .benefit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: .88rem;
	font-weight: 700;
	font-style: italic;
	margin-bottom: 5px;
	line-height: 1.5;
}

.bottle-card .benefit i {
	font-size: .85rem;
	flex-shrink: 0;
}

.bottle-card .per-bottle-label {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-top: -2px;
	opacity: 0.7;
}

.bottle-card .total-line {
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 2px;
	line-height: 1.6;
}

.bottle-card .total-line .old {
	text-decoration: line-through;
	color: #CC0000;
	font-weight: 600;
}

.bottle-card .total-line .new {
	font-size: 1.3rem;
	font-weight: 900;
}

.bottle-card .shipping-line {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
}

.bottle-card .buy-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 20px;
	font-size: 1.55rem;
	font-weight: 900;
	text-decoration: none;
	color: #1a1a1a;
	cursor: pointer;
	border: none;
	width: 100%;
	letter-spacing: .04em;
	transition: filter .2s;
}

.bottle-card:hover .buy-btn { filter: brightness(1.05); }
.bottle-card .buy-btn i { font-size: 1.15rem; }

.bottle-card .buy-btn.gold {
	background: linear-gradient(180deg, #FFD600 0%, #FFC107 100%);
	color: #1a1a1a;
}

.bottle-card .buy-btn.gray {
	background: linear-gradient(180deg, #B0B0B0 0%, #8A8A8A 100%);
	color: #1a1a1a;
}

.bottle-card .buy-btn.dark-red {
	background: linear-gradient(180deg, #e53935 0%, #8e0000 100%);
	color: #fff;
}

/* ---- BEST OFFER CARD ---- */
.best-offer .banner {
	background: linear-gradient(180deg, #e53935 0%, #8e0000 100%);
	text-align: center;
	padding: 9px 16px;
	font-size: 1.45rem;
	font-weight: 900;
	color: #fff;
	letter-spacing: .1em;
	text-transform: uppercase;
	border-bottom: 3px solid #6b0000;
}

.best-offer .card-body {
	background: linear-gradient(155deg, #6b0000 0%, #a31212 50%, #e53935 100%);
}

.best-offer .card-left img {
	filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .45));
}

.best-offer .card-left .count { color: #fff; }
.best-offer .card-left .supply { color: rgba(255, 255, 255, .8); }
.best-offer .price-row { color: #fff; }
.best-offer .per-bottle-label { color: rgba(255, 255, 255, .7); }
.best-offer .sep { border-color: rgba(255, 255, 255, .25); }
.best-offer .benefit { color: rgba(255, 255, 255, .95); }
.best-offer .benefit.save { color: #FFD600; }
.best-offer .total-line { color: #fff; }
.best-offer .total-line .old { color: #FFB3B3; }
.best-offer .shipping-line { color: #fff; }
.best-offer .shipping-line .hl { color: #FFD600; }

/* ---- WHITE CARDS ---- */
.white-card .card-body { background: #fff; }

.white-card .card-left .title {
	font-family: Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-size: 1.15rem;
	font-weight: 400;
	color: #333;
	margin-bottom: 0;
	line-height: 1.3;
}

.white-card .card-left .count { color: #1a1a1a; }
.white-card .card-left .supply { color: #555; }
.white-card .price-row { color: #1a1a1a; }
.white-card .sep { border-color: rgba(0, 0, 0, .18); }
.white-card .benefit { color: #333; }
.white-card .benefit.save { color: #c62828; }
.white-card .total-line { color: #1a1a1a; }
.white-card .shipping-line { color: #1a1a1a; }
.white-card .shipping-line .hl { color: #c62828; }

@media(min-width: 768px) {
	.bottles-section {
		flex-direction: row;
		max-width: 1100px;
		align-items: stretch;
		gap: 16px;
	}

	.bottle-card {
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	/* desktop order: 2 bottles, 6 bottles, 3 bottles */
	.bottle-card:nth-child(1) { order: 2; }
	.bottle-card:nth-child(2) { order: 3; }
	.bottle-card:nth-child(3) { order: 1; }

	.bottle-card .card-body {
		flex-direction: column;
		flex: 1;
		padding: 16px 14px;
	}

	.bottle-card .card-left { flex: none; width: 100%; }
	.bottle-card .card-left img { max-width: 70%; margin: 0 auto; }
	.bottle-card .card-right { width: 100%; }
	.bottle-card .price-row .amount { font-size: 2.8rem; }
	.bottle-card .price-row .dollar { font-size: 1.3rem; }

	.bottle-card .buy-btn {
		font-size: 1.15rem;
		padding: 12px 14px;
		margin-top: auto;
	}

	.bottle-card .benefit { font-size: .78rem; }
	.bottle-card .total-line { font-size: .92rem; }
	.bottle-card .shipping-line { font-size: .88rem; }
}

@media(max-width:420px) {
	.bottle-card .card-body { gap: 10px; padding: 16px 14px; }
	.bottle-card .price-row .amount { font-size: 2.8rem; }
	.bottle-card .price-row .dollar { font-size: 1.3rem; }
	.bottle-card .card-left .count { font-size: 1.25rem; }
	.bottle-card .benefit { font-size: .78rem; }
	.bottle-card .total-line { font-size: .88rem; }
	.bottle-card .total-line .new { font-size: 1rem; }
	.bottle-card .shipping-line { font-size: .85rem; }
	.bottle-card .buy-btn { font-size: 1.3rem; padding: 13px 16px; }
}
