/* Food Butik - Hediye Ürün Seçim Bloğu (sepet drawer + checkout) */

.fb-gift-block {
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	padding: 14px 16px;
	margin: 14px 0;
	background: #fff;
	box-shadow: 0 1px 5px rgba( 0, 0, 0, 0.06 );
}

.fb-gift-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
}

.fb-gift-title {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 15px;
	font-weight: 700;
	color: #c0272d;
	line-height: 1.2;
}

.fb-gift-title::before {
	content: "\1F381"; /* 🎁 */
	font-size: 17px;
}

.fb-gift-counter {
	flex: none;
	font-size: 12px;
	font-weight: 700;
	background: #fbe9e9;
	color: #c0272d;
	padding: 3px 11px;
	border-radius: 20px;
	white-space: nowrap;
}

.fb-gift-items {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Buton reset'ini ezmek için yüksek özgüllük + gerekli !important'lar. */
.fb-gift-block .fb-gift-item {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 10px;
	width: 100% !important;
	max-width: none !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 11px 14px !important;
	border: 1.5px solid #e4e4e4 !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: #333 !important;
	cursor: pointer;
	text-align: left !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	font: inherit !important;
	line-height: 1.3 !important;
	box-shadow: none !important;
	transition: border-color 0.12s, background 0.12s;
}

.fb-gift-block .fb-gift-item:hover {
	border-color: #c0272d !important;
	background: #fdf4f4 !important;
}

.fb-gift-block .fb-gift-item.selected {
	border-color: #4caf50 !important;
	background: #eef8ee !important;
}

.fb-gift-block .fb-gift-item.disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.fb-gift-block .fb-gift-item.fb-gift-loading {
	opacity: 0.6;
	pointer-events: none;
}

.fb-gift-name {
	font-size: 14px;
	font-weight: 500;
	color: #222;
	text-align: left;
}

.fb-gift-action {
	flex: none;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
	padding: 5px 13px;
	border-radius: 20px;
	background: #efefef;
	color: #555;
}

.fb-gift-block .fb-gift-item.selected .fb-gift-action {
	background: #4caf50;
	color: #fff;
}

.fb-gift-block .fb-gift-item.selected .fb-gift-action::before {
	content: "\2713\00A0"; /* ✓ */
}

/* Checkout order review tablosunda tr içinde tam genişlik. */
tr.fb-gift-row > td {
	padding: 0 !important;
}

tr.fb-gift-row .fb-gift-block {
	margin: 10px 0;
}
