.retail-page {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.retail-title-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 18px;
}

.retail-title-row h1 {
	grid-column: 2;
	margin-bottom: 12px !important;
	text-align: center;
	white-space: nowrap;
}

.retail-title-spacer {
	grid-column: 1;
}

.retail-title-row .retail-signup-btn {
	grid-column: 3;
	justify-self: end;
	margin-bottom: 12px;
}

.retail-signup-btn {
	flex: 0 0 auto;
	min-width: 190px;
	text-align: center;
}

.retail-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.retail-toolbar p {
	margin: 0;
	color: #5d7087;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
}

.retail-search {
	position: relative;
	flex: 1 1 auto;
	max-width: 520px;
}

.retail-search i {
	position: absolute;
	left: 17px;
	top: 50%;
	transform: translateY(-50%);
	color: #7d91aa;
	font-size: 15px;
}

.retail-search input {
	width: 100%;
	height: 48px;
	padding: 0 18px 0 44px;
	border: 1px solid #dfe8f2;
	border-radius: 50em;
	background: #ffffff;
	box-shadow: 0 8px 20px rgba(14, 34, 64, 0.05);
	color: #1e2b3a;
	font-size: 15px;
	outline: none;
}

.retail-search input:focus {
	border-color: #fd5c4c;
	box-shadow: 0 0 0 4px rgba(253, 92, 76, 0.12);
}

.retail-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.retail-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 130px;
	padding: 18px;
	border: 1px solid #e6edf5;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(14, 34, 64, 0.08);
}

.retail-card-hidden {
	display: none !important;
}

.retail-card-main {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.retail-icon {
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #fff7e6 0%, #ffe2a3 55%, #ffcb65 100%);
	color: #7a4700;
	font-size: 20px;
	box-shadow: 0 10px 18px rgba(184, 128, 17, 0.15);
}

.retail-card h3 {
	margin: 0 0 8px;
	color: #1e2b3a;
	font-size: 19px;
	line-height: 1.2;
	font-weight: 800;
}

.retail-address {
	margin: 0;
	color: #5d7087;
	font-size: 15px;
	line-height: 1.4;
}

.retail-address span {
	display: block;
}

.retail-empty {
	padding: 35px 20px;
	border: 1px dashed #ffd0ca;
	border-radius: 18px;
	background: #ffffff;
}

.retail-empty p {
	margin: 0;
}

@media screen and (max-width: 991px) {
	.retail-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.retail-intro h2 {
		font-size: 24px;
	}
}

@media screen and (max-width: 767px) {
	.retail-title-row {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.retail-title-spacer {
		display: none;
	}

	.retail-title-row h1,
	.retail-title-row .retail-signup-btn {
		margin-bottom: 0 !important;
	}

	.retail-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.retail-signup-btn,
	.retail-search {
		width: 100%;
		max-width: none;
	}

	.retail-toolbar p {
		text-align: center;
	}

	.retail-grid {
		grid-template-columns: 1fr;
	}
}
