.branch-selector {
	margin-bottom: 20px;
}

.branch-selector-header {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 15px;
}

.branch-selector-header h4 {
	margin: 0;
	color: #333;
	font-size: 18px;
}

.branch-selector-form {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	align-items: end;
}

.branch-selector-form .form-group {
	flex: 1;
	min-width: 200px;
}

.branch-selector-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	color: #333;
}

.branch-selector-form select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

.branch-list {
	max-height: 400px;
	overflow-y: auto;
	border: 1px solid #eee;
	border-radius: 5px;
}

.branch-item {
	padding: 15px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	transition: background-color 0.2s;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.branch-item:hover {
	background-color: #f8f9fa;
}

.branch-item.selected {
	background-color: #e8f5e8;
	border-left: 4px solid #95c11f;
}

.branch-item:last-child {
	border-bottom: none;
}

.branch-info {
	flex: 1;
}

.branch-name {
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
	font-size: 16px;
}

.branch-address {
	color: #666;
	font-size: 14px;
	margin-bottom: 5px;
}

.branch-phone {
	color: #95c11f;
	font-size: 14px;
	font-weight: 500;
}

.branch-select-link {
	background: #95c11f;
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s;
	display: inline-block;
	text-decoration: none;
}

.branch-select-link:hover {
	background: #7da619;
	color: white;
	text-decoration: none;
}

.branch-select-link.selected {
	background: #28a745;
}

.selected-branch-info {
	background: #e8f5e8;
	border: 1px solid #95c11f;
	border-radius: 5px;
	padding: 15px;
	margin-top: 15px;
}

.selected-branch-info h5 {
	color: #95c11f;
	margin: 0 0 10px 0;
}

.no-branches {
	text-align: center;
	padding: 30px;
	color: #999;
}

.fsm-badge {
	background: #ff6b35;
	color: white;
	padding: 3px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
	margin-left: 10px;
}

@media (max-width: 768px) {
	.branch-selector-form {
		flex-direction: column;
		align-items: stretch;
	}

	.branch-item {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.branch-select-link {
		align-self: flex-start;
	}
}
#checkout-gift-note{
	display:none !important;
}