.gcc-store-directory-block,
.gcc-store-profile {
	--gcc-store-white: var(--gcc-white, #fff);
	--gcc-store-cyan: var(--gcc-cyan, #22b5d0);
	--gcc-store-indigo: var(--gcc-indigo, #2d3981);
	--gcc-store-charcoal: var(--gcc-charcoal, #323236);
	--gcc-store-surface: var(--gcc-surface, rgba(45, 57, 129, .045));
	--gcc-store-border: var(--gcc-border, rgba(45, 57, 129, .17));
	--gcc-store-muted: var(--gcc-muted, rgba(50, 50, 54, .72));
	font-family: "DM Sans", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.gcc-store-filters {
	display: grid;
	grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(150px, 1fr)) auto;
	gap: 12px;
	align-items: end;
	margin-bottom: 28px;
	padding: 20px;
	border: 1px solid var(--gcc-store-border);
	border-radius: 8px;
	background: var(--gcc-store-white);
}

.gcc-store-filters label {
	display: grid;
	gap: 7px;
	min-width: 0;
	color: var(--gcc-store-charcoal);
	font-size: 12px;
	font-weight: 600;
}

.gcc-store-filters input,
.gcc-store-filters select {
	width: 100%;
	min-height: 44px;
	padding: 9px 11px;
	border: 1px solid var(--gcc-store-border);
	border-radius: 5px;
	background: var(--gcc-store-white);
	color: var(--gcc-store-charcoal);
	font: inherit;
	font-size: 14px;
}

.gcc-store-filters button,
.gcc-store-primary-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--gcc-store-indigo);
	border-radius: 5px;
	background: var(--gcc-store-indigo);
	color: var(--gcc-store-white);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
}

.gcc-store-filters button:hover,
.gcc-store-primary-action:hover {
	border-color: var(--gcc-store-cyan);
	background: var(--gcc-store-cyan);
	color: var(--gcc-store-white);
}

.gcc-store-directory-block__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 14px;
}

.gcc-store-directory-block__toolbar p {
	margin: 0;
	color: var(--gcc-store-muted);
	font-size: 14px;
}

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

.gcc-store-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--gcc-store-border);
	border-radius: 8px;
	background: var(--gcc-store-white);
}

.gcc-store-card__media {
	display: grid;
	place-items: center;
	min-height: 190px;
	padding: 24px;
	background: var(--gcc-store-surface);
}

.gcc-store-card__media img {
	display: block;
	width: 100%;
	height: 142px;
	object-fit: contain;
}

.gcc-store-card__initials {
	display: grid;
	place-items: center;
	width: 82px;
	height: 82px;
	border-radius: 8px;
	background: var(--gcc-store-indigo);
	color: var(--gcc-store-white);
	font-size: 28px;
	font-weight: 700;
}

.gcc-store-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.gcc-store-card__meta {
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 24px;
	flex-wrap: wrap;
}

.gcc-store-category,
.gcc-store-badge {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 4px 7px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
}

.gcc-store-category {
	background: var(--gcc-store-surface);
	color: var(--gcc-store-indigo);
}

.gcc-store-badge {
	border: 1px solid var(--gcc-store-cyan);
	color: var(--gcc-store-indigo);
}

.gcc-store-card h3 {
	margin: 14px 0 8px;
	font-size: 21px;
	line-height: 1.18;
}

.gcc-store-card h3 a {
	color: var(--gcc-store-indigo);
	text-decoration: none;
}

.gcc-store-card__body > p {
	margin: 0 0 14px;
	color: var(--gcc-store-muted);
	font-size: 14px;
	line-height: 1.62;
}

.gcc-store-card__location {
	margin-top: auto;
	color: var(--gcc-store-charcoal);
	font-size: 12px;
	font-weight: 500;
}

.gcc-store-card__actions {
	display: flex;
	gap: 16px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.gcc-store-card__actions a {
	color: var(--gcc-store-indigo);
	font-size: 13px;
	font-weight: 600;
}

.gcc-store-card__actions a:hover {
	color: var(--gcc-store-cyan);
}

.gcc-store-directory-block.is-compact .gcc-store-directory-block__toolbar {
	display: none;
}

.gcc-store-directory-block.is-compact .gcc-store-grid {
	grid-template-columns: 1fr;
	gap: 12px;
}

.gcc-store-directory-block.is-compact .gcc-store-card {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
}

.gcc-store-directory-block.is-compact .gcc-store-card__media {
	min-height: 132px;
	padding: 12px;
}

.gcc-store-directory-block.is-compact .gcc-store-card__media img {
	height: 108px;
}

.gcc-store-directory-block.is-compact .gcc-store-card__body {
	padding: 16px;
}

.gcc-store-directory-block.is-compact .gcc-store-card__body > p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.gcc-store-empty {
	grid-column: 1 / -1;
	padding: 36px;
	border: 1px solid var(--gcc-store-border);
	border-radius: 8px;
	background: var(--gcc-store-surface);
}

.gcc-store-empty h3,
.gcc-store-empty p {
	margin-top: 0;
}

.gcc-store-profile {
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 24px 80px;
}

.gcc-store-profile__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
	gap: 48px;
	align-items: center;
}

.gcc-store-profile__identity {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

.gcc-store-profile__logo {
	width: 112px;
	height: 112px;
	padding: 10px;
	border: 1px solid var(--gcc-store-border);
	border-radius: 8px;
	background: var(--gcc-store-white);
	object-fit: contain;
}

.gcc-store-profile h1 {
	margin: 12px 0 14px;
	color: var(--gcc-store-indigo);
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1;
}

.gcc-store-profile__identity p {
	max-width: 620px;
	margin: 0;
	color: var(--gcc-store-muted);
	font-size: 17px;
	line-height: 1.68;
}

.gcc-store-profile__cover {
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
	background: var(--gcc-store-surface);
}

.gcc-store-profile__cover img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.gcc-store-profile__facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 48px 0;
	border: 1px solid var(--gcc-store-border);
	border-radius: 8px;
	overflow: hidden;
}

.gcc-store-profile__facts span {
	display: grid;
	gap: 7px;
	padding: 20px;
	border-right: 1px solid var(--gcc-store-border);
	color: var(--gcc-store-muted);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.gcc-store-profile__facts span:last-child {
	border-right: 0;
}

.gcc-store-profile__facts strong {
	overflow-wrap: anywhere;
	color: var(--gcc-store-indigo);
	font-size: 18px;
	line-height: 1.25;
	text-transform: none;
}

.gcc-store-profile__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
	gap: 32px;
	align-items: start;
}

.gcc-store-profile__panel,
.gcc-store-profile__contact {
	margin-bottom: 20px;
	padding: 28px;
	border: 1px solid var(--gcc-store-border);
	border-radius: 8px;
	background: var(--gcc-store-white);
}

.gcc-store-profile__panel h2,
.gcc-store-profile__contact h2 {
	margin: 0 0 18px;
	color: var(--gcc-store-indigo);
	font-size: 28px;
}

.gcc-store-profile__content,
.gcc-store-profile__panel p,
.gcc-store-profile__contact {
	font-size: 16px;
	line-height: 1.72;
}

.gcc-store-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.gcc-store-gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 5px;
	object-fit: cover;
}

.gcc-store-profile__contact {
	position: sticky;
	top: 112px;
}

.gcc-store-profile__contact dl {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 10px 14px;
	margin: 0;
}

.gcc-store-profile__contact dt {
	color: var(--gcc-store-muted);
	font-size: 13px;
	font-weight: 600;
}

.gcc-store-profile__contact dd {
	margin: 0;
	overflow-wrap: anywhere;
}

.gcc-store-profile__actions {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.gcc-store-profile__actions > a:not(.gcc-store-primary-action) {
	display: inline-flex;
	justify-content: center;
	padding: 10px 18px;
	border: 1px solid var(--gcc-store-border);
	border-radius: 5px;
	color: var(--gcc-store-indigo);
	font-weight: 600;
	text-decoration: none;
}

.gcc-store-profile__notice {
	margin: 22px 0 0;
	padding-top: 18px;
	border-top: 1px solid var(--gcc-store-border);
	color: var(--gcc-store-muted);
	font-size: 12px;
	line-height: 1.6;
}

@media (max-width: 1024px) {
	.gcc-store-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gcc-store-filters button { align-self: end; }
	.gcc-store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gcc-store-profile__hero { grid-template-columns: 1fr; }
	.gcc-store-profile__layout { grid-template-columns: 1fr; }
	.gcc-store-profile__contact { position: static; }
}

@media (max-width: 600px) {
	.gcc-store-filters,
	.gcc-store-grid { grid-template-columns: 1fr; }
	.gcc-store-profile { padding: 40px 18px 56px; }
	.gcc-store-profile__identity { grid-template-columns: 80px minmax(0, 1fr); gap: 14px; }
	.gcc-store-profile__logo { width: 80px; height: 80px; }
	.gcc-store-profile h1 { font-size: 36px; overflow-wrap: anywhere; }
	.gcc-store-profile__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gcc-store-profile__facts span:nth-child(2) { border-right: 0; }
	.gcc-store-profile__facts span:nth-child(-n+2) { border-bottom: 1px solid var(--gcc-store-border); }
	.gcc-store-profile__panel,
	.gcc-store-profile__contact { padding: 22px; }
	.gcc-store-gallery { grid-template-columns: 1fr; }
	.gcc-store-directory-block.is-compact .gcc-store-card { grid-template-columns: 1fr; }
	.gcc-store-directory-block.is-compact .gcc-store-card__media { min-height: 160px; }
}
