.atc-drink-body { max-height: 300px; overflow-y: auto; border: 1px solid #e9ecef; border-radius: 12px; padding: 12px; background: #fafafa; }
.drink-card { display: flex; align-items: center; gap: 12px; padding: 8px 12px; border-radius: 10px; background: #fff; border: 1px solid #e9ecef; margin-bottom: 8px; transition: border-color 0.2s; }
.drink-card.selected { border-color: #ce2101; background: #fff5f5; }
.drink-card-img { width: 44px; height: 44px; flex-shrink: 0; border-radius: 8px; overflow: hidden; }
.drink-card-img img { width: 100%; height: 100%; object-fit: cover; }
.drink-card-info { flex: 1; min-width: 0; }
.drink-card-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.drink-unit-price { font-weight: 400; font-size: 0.78rem; color: #888; }
.drink-card-sizes { display: flex; gap: 4px; flex-wrap: wrap; }
.drink-size-pill { padding: 2px 8px; border-radius: 6px; font-size: 0.72rem; border: 1px solid #dee2e6; cursor: pointer; background: #fff; transition: all 0.15s; }
.drink-size-pill.active { border-color: #ce2101; background: #ce2101; color: #fff; }
.drink-card-qty { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.drink-qty-btn { width: 28px; height: 28px; border: 1px solid #dee2e6; border-radius: 50%; background: #fff; cursor: pointer; font-weight: bold; display: flex; align-items: center; justify-content: center; color: #333; }
.drink-qty-value { font-weight: 700; min-width: 20px; text-align: center; }
.drink-card-price { font-weight: 700; font-size: 0.9rem; color: #ce2101; min-width: 55px; text-align: right; flex-shrink: 0; }
