/*
 * Haraj Sawariq — ecommerce shop CSS.
 * Standard product card grid + filters + quick view modal.
 */

/* ---------- Smooth scroll, reduced-motion ---------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ---------- WC notices ---------- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: .5rem;
}

/* ---------- Better focus on keyboard only ---------- */
:focus-visible {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

/* ---------- Form fields readable defaults ---------- */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	font-size: 1rem;
	min-height: 44px;
}

/* =====================================================================
 * SHOP TOKENS — scoped under .hsc-shop
 * ===================================================================== */

.hsc-shop {
	--ink:        #0E1A24;
	--steel:      #4A5A66;
	--fog:        #F2F5F7;
	--line:       #D9DEE3;
	--line-soft:  #ECEFF2;
	--frost:      #00B4D8;
	--frost-d:    #0096B4;
	--alert:      #E63946;
	--white:      #FFFFFF;
	--radius:     8px;
	--shadow:     0 2px 8px rgba(0,0,0,.06);
	--shadow-lg:  0 12px 40px rgba(0,0,0,.18);

	background: var(--fog);
	color: var(--ink);
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.hsc-shop *,
.hsc-shop *::before,
.hsc-shop *::after { box-sizing: border-box; }

/* =====================================================================
 * BREADCRUMBS + SHOP HEADER
 * ===================================================================== */

.hsc-shop {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1.5rem clamp(1rem, 4vw, 3rem) 3rem;
}

.hsc-breadcrumbs {
	display: flex;
	gap: .5rem;
	font-size: .85rem;
	color: var(--steel);
	margin-bottom: 1rem;
}
.hsc-breadcrumbs a {
	color: var(--steel);
	text-decoration: none;
}
.hsc-breadcrumbs a:hover { color: var(--ink); }
.hsc-breadcrumbs__sep { color: var(--line); }
.hsc-breadcrumbs__current { color: var(--ink); }

.hsc-shop__head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--line);
	flex-wrap: wrap;
}
.hsc-shop__title {
	font-family: 'Inter', sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	margin: 0 0 .25rem;
	color: var(--ink);
	line-height: 1.1;
}
.hsc-shop__count {
	font-size: .9rem;
	color: var(--steel);
}

.hsc-sort { display: flex; align-items: center; gap: .5rem; }
.hsc-sort__label {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-size: .85rem;
	color: var(--steel);
	margin: 0;
}
.hsc-sort select {
	appearance: none;
	-webkit-appearance: none;
	background: var(--white)
		url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%200l5%206%205-6z%22%20fill%3D%22%234A5A66%22%2F%3E%3C%2Fsvg%3E")
		no-repeat right .75rem center;
	background-size: 8px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: .55rem 2rem .55rem .85rem;
	font-size: .9rem;
	font-family: inherit;
	color: var(--ink);
	cursor: pointer;
}
.hsc-sort select:hover { border-color: var(--steel); }

/* =====================================================================
 * LAYOUT — sidebar + main
 * ===================================================================== */

.hsc-shop__layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 2rem;
	align-items: start;
}

.hsc-shop__sidebar {
	position: sticky;
	top: 1rem;
}

/* =====================================================================
 * FILTER SIDEBAR
 * ===================================================================== */

.hsc-filters {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.25rem;
	box-shadow: var(--shadow);
}
.hsc-filters__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 1rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid var(--line);
}
.hsc-filters__title {
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	color: var(--ink);
}
.hsc-filters__clear {
	font-size: .78rem;
	color: var(--steel);
	text-decoration: none;
}
.hsc-filters__clear:hover { color: var(--alert); }

.hsc-filters__group {
	border-bottom: 1px solid var(--line-soft);
	padding: .75rem 0;
}
.hsc-filters__group:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
}
.hsc-filters__group > summary {
	font-size: .9rem;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	list-style: none;
	padding: .25rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.hsc-filters__group > summary::after {
	content: '+';
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--steel);
	transition: transform .15s;
}
.hsc-filters__group[open] > summary::after {
	content: '−';
}

.hsc-filters__list {
	list-style: none;
	padding: 0;
	margin: .5rem 0 0;
}
.hsc-filters__list li {
	padding: .15rem 0;
}
.hsc-filters__list label {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .88rem;
	color: var(--ink);
	cursor: pointer;
}
.hsc-filters__list label:hover { color: var(--frost-d); }
.hsc-filters__list input[type="checkbox"],
.hsc-filters__list input[type="radio"] {
	accent-color: var(--frost);
	width: 16px;
	height: 16px;
}
.hsc-filters__count {
	margin-left: auto;
	font-size: .75rem;
	color: var(--steel);
	font-variant-numeric: tabular-nums;
}

.hsc-filters__price {
	display: flex;
	align-items: center;
	gap: .35rem;
	margin-top: .5rem;
}
.hsc-filters__price input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: .45rem .55rem;
	font-size: .85rem;
	font-family: inherit;
}
.hsc-filters__price input:focus { border-color: var(--frost); outline: 0; }

.hsc-filters__checkbox {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .88rem;
	margin-top: .5rem;
	cursor: pointer;
}

.hsc-filters__apply {
	display: block;
	width: 100%;
	margin-top: 1rem;
	background: var(--ink);
	color: var(--white);
	border: 0;
	border-radius: var(--radius);
	padding: .75rem;
	font-family: inherit;
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s;
}
.hsc-filters__apply:hover { background: #1a2832; }

/* =====================================================================
 * PRODUCT GRID + CARD
 * ===================================================================== */

.hsc-shop__main { min-width: 0; }

.hsc-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.25rem;
}

.hsc-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform .2s, box-shadow .2s;
	display: flex;
	flex-direction: column;
}
.hsc-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.hsc-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--fog);
	overflow: hidden;
}
.hsc-card__img-link {
	display: block;
	width: 100%;
	height: 100%;
}
.hsc-card__img-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s;
}
.hsc-card:hover .hsc-card__img-link img {
	transform: scale(1.04);
}
.hsc-card__noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: var(--steel);
	font-size: .85rem;
}

.hsc-card__badge {
	position: absolute;
	top: .6rem;
	left: .6rem;
	background: var(--alert);
	color: var(--white);
	font-size: .7rem;
	font-weight: 700;
	padding: .2rem .5rem;
	border-radius: 4px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.hsc-card__wishlist {
	position: absolute;
	top: .5rem;
	right: .5rem;
	background: var(--white);
	border: 0;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0,0,0,.12);
	color: var(--steel);
	transition: color .15s, transform .15s;
}
.hsc-card__wishlist:hover {
	color: var(--alert);
	transform: scale(1.06);
}
.hsc-card__wishlist.is-saved { color: var(--alert); }
.hsc-card__wishlist.is-saved .hsc-heart::before { content: '\2665'; }
.hsc-card__wishlist .hsc-heart { font-size: 1.1rem; line-height: 1; }

.hsc-card__quickview {
	position: absolute;
	left: 50%;
	bottom: .6rem;
	transform: translateX(-50%) translateY(8px);
	background: var(--ink);
	color: var(--white);
	border: 0;
	border-radius: 4px;
	padding: .5rem .85rem;
	font-family: inherit;
	font-size: .78rem;
	font-weight: 500;
	cursor: pointer;
	opacity: 0;
	transition: opacity .2s, transform .2s, background .15s;
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	white-space: nowrap;
}
.hsc-card:hover .hsc-card__quickview,
.hsc-card:focus-within .hsc-card__quickview {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
.hsc-card__quickview:hover { background: #1a2832; }
.hsc-card__quickview-label { display: inline; }

.hsc-card__body {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: .4rem;
	flex: 1;
}
.hsc-card__cat {
	font-size: .72rem;
	color: var(--steel);
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 500;
}
.hsc-card__title {
	font-size: .98rem;
	font-weight: 500;
	line-height: 1.3;
	margin: 0;
	color: var(--ink);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 2.6em;
}
.hsc-card__title a {
	color: inherit;
	text-decoration: none;
}
.hsc-card__title a:hover { color: var(--frost-d); }
.hsc-card__price {
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}
.hsc-card__price ins {
	text-decoration: none;
	color: var(--alert);
	font-weight: 700;
}
.hsc-card__price del {
	color: var(--steel);
	font-weight: 400;
	margin-right: .35rem;
	font-size: .85rem;
}
.hsc-card__price-na {
	font-size: .85rem;
	color: var(--steel);
	font-weight: 400;
	font-style: italic;
}
.hsc-card__atc {
	margin-top: auto;
	background: var(--ink);
	color: var(--white);
	border: 0;
	border-radius: var(--radius);
	padding: .65rem 1rem;
	font-family: inherit;
	font-size: .85rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s;
}
.hsc-card__atc:hover { background: var(--frost-d); color: var(--white); }
.hsc-card__atc.is-loading {
	opacity: .7;
	pointer-events: none;
	position: relative;
}
.hsc-card__atc.is-loading::after {
	content: '';
	position: absolute;
	right: 1rem;
	top: 50%;
	width: .9rem;
	height: .9rem;
	margin-top: -.45rem;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: hsc-spin .8s linear infinite;
}

@keyframes hsc-spin { to { transform: rotate(360deg); } }

/* =====================================================================
 * EMPTY STATE
 * ===================================================================== */

.hsc-empty {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 3rem 1.5rem;
	text-align: center;
	color: var(--steel);
}
.hsc-empty p { margin: 0 0 1rem; }
.hsc-empty .button {
	display: inline-block;
	background: var(--ink);
	color: var(--white);
	padding: .65rem 1.25rem;
	border-radius: var(--radius);
	text-decoration: none;
	font-weight: 600;
	font-size: .9rem;
}

/* =====================================================================
 * PAGINATION
 * ===================================================================== */

.hsc-pagination {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}
.hsc-pagination ul {
	list-style: none;
	display: flex;
	gap: .25rem;
	padding: 0;
	margin: 0;
}
.hsc-pagination li a,
.hsc-pagination li span {
	display: block;
	min-width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--ink);
	text-decoration: none;
	font-size: .9rem;
	background: var(--white);
	transition: background .15s, color .15s;
}
.hsc-pagination li a:hover {
	background: var(--ink);
	color: var(--white);
	border-color: var(--ink);
}
.hsc-pagination li.active span {
	background: var(--ink);
	color: var(--white);
	border-color: var(--ink);
}
.hsc-pagination li.dots span {
	border: 0;
	background: transparent;
}

/* =====================================================================
 * QUICK VIEW MODAL
 * ===================================================================== */

.hsc-quickview {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.55);
	backdrop-filter: blur(2px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
.hsc-quickview[hidden] { display: none; }
.hsc-quickview.is-loading::before {
	content: '';
	width: 32px;
	height: 32px;
	border: 3px solid var(--white);
	border-right-color: transparent;
	border-radius: 50%;
	animation: hsc-spin .8s linear infinite;
}

.hsc-quickview__inner {
	background: var(--white);
	border-radius: var(--radius);
	max-width: 900px;
	width: 100%;
	max-height: 90vh;
	overflow: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	box-shadow: var(--shadow-lg);
}
.hsc-quickview__close {
	position: absolute;
	top: .5rem;
	right: .5rem;
	background: var(--white);
	border: 0;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	font-size: 1.4rem;
	line-height: 1;
	color: var(--ink);
	cursor: pointer;
	z-index: 1;
	box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.hsc-quickview__media {
	background: var(--fog);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}
.hsc-quickview__media img {
	max-width: 100%;
	max-height: 360px;
	object-fit: contain;
}
.hsc-quickview__body {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.hsc-quickview__sku {
	font-size: .75rem;
	color: var(--steel);
	text-transform: uppercase;
	letter-spacing: .04em;
}
.hsc-quickview__title {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.2;
	color: var(--ink);
}
.hsc-quickview__price {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--ink);
}
.hsc-quickview__desc {
	color: var(--steel);
	font-size: .92rem;
	line-height: 1.5;
	flex: 1;
}
.hsc-quickview__actions {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	margin-top: auto;
}
.hsc-quickview__atc .button {
	background: var(--ink);
	color: var(--white);
	border: 0;
	border-radius: var(--radius);
	padding: .85rem 1.25rem;
	font-family: inherit;
	font-size: .95rem;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: background .15s;
}
.hsc-quickview__atc .button:hover { background: var(--frost-d); }
.hsc-quickview__more {
	text-align: center;
	color: var(--steel);
	font-size: .85rem;
	text-decoration: none;
}
.hsc-quickview__more:hover { color: var(--ink); }

/* =====================================================================
 * WISHLIST POPOVER
 * ===================================================================== */

.hsc-wishlist-popover {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--white);
	border-top-left-radius: var(--radius);
	border-top-right-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 1.5rem;
	max-height: 70vh;
	overflow-y: auto;
	z-index: 99998;
	transform: translateY(100%);
	transition: transform .25s;
}
.hsc-wishlist-popover:not([hidden]) { display: block; transform: translateY(0); }
.hsc-wishlist-popover[hidden] { display: none; }
.hsc-wishlist-popover h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 1rem;
	color: var(--ink);
}
.hsc-wishlist-popover__close {
	position: absolute;
	top: .75rem;
	right: 1rem;
	background: transparent;
	border: 0;
	font-size: 1.4rem;
	color: var(--steel);
	cursor: pointer;
}
.hsc-wishlist-popover__empty {
	color: var(--steel);
	font-size: .9rem;
	margin: 0 0 1rem;
}
.hsc-wishlist-popover__empty[hidden] { display: none; }
.hsc-wishlist-popover__list {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
	display: grid;
	gap: .5rem;
}
.hsc-wishlist-popover__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .5rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-size: .9rem;
}
.hsc-wishlist-popover__item a { color: var(--ink); text-decoration: none; }
.hsc-wishlist-popover__item a:hover { color: var(--frost-d); }
.hsc-wishlist-popover__remove {
	background: transparent;
	border: 0;
	color: var(--alert);
	cursor: pointer;
	font-size: .85rem;
}
.hsc-wishlist-popover__cta {
	display: block;
	text-align: center;
	background: var(--ink);
	color: var(--white);
	padding: .75rem;
	border-radius: var(--radius);
	text-decoration: none;
	font-weight: 600;
	font-size: .9rem;
}

/* =====================================================================
 * TOAST — used by add-to-cart feedback
 * ===================================================================== */

.hsc-toast {
	position: fixed;
	bottom: 6rem;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: var(--ink);
	color: var(--white);
	padding: .75rem 1.25rem;
	border-radius: var(--radius);
	font-size: .9rem;
	z-index: 99997;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s, transform .2s;
	box-shadow: var(--shadow-lg);
}
.hsc-toast.is-shown {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* =====================================================================
 * WISHLIST BUTTON — single product page
 * ===================================================================== */

.hsc-wishlist-btn--single {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	margin-left: .5rem;
	background: transparent;
	border: 1px solid currentColor;
	border-radius: 2rem;
	padding: .55rem 1rem;
	cursor: pointer;
	font-size: .9rem;
	color: inherit;
	font-family: inherit;
	transition: background .2s, color .2s;
}
.hsc-wishlist-btn--single:hover { background: var(--fog); }
.hsc-wishlist-btn--single.is-saved { color: var(--alert); border-color: var(--alert); }
.hsc-wishlist-btn--single.is-saved .hsc-heart { color: var(--alert); }
.hsc-wishlist-btn--single .hsc-heart::before { content: '\2661'; }
.hsc-wishlist-btn--single.is-saved .hsc-heart::before { content: '\2665'; }

/* =====================================================================
 * MOBILE BOTTOM BAR — ecommerce
 * ===================================================================== */

.hsc-mobile-bar { display: none; }
@media (max-width: 768px) {
	.hsc-mobile-bar {
		display: flex;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--white);
		box-shadow: 0 -2px 10px rgba(0,0,0,.08);
		z-index: 9998;
		padding: .35rem .25rem calc(.35rem + env(safe-area-inset-bottom));
		justify-content: space-around;
		align-items: center;
		border-top: 1px solid var(--line);
	}
	.hsc-mobile-bar__item {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 2px;
		text-decoration: none;
		color: var(--steel);
		font-size: .65rem;
		padding: .35rem 0;
		position: relative;
		background: transparent;
		border: 0;
		font-family: inherit;
		cursor: pointer;
	}
	.hsc-mobile-bar__item.is-saved,
	.hsc-mobile-bar__item.is-active { color: var(--alert); }
	.hsc-mobile-bar__item .hsc-icon { font-size: 1.15rem; line-height: 1; }
	.hsc-mobile-bar__cart .hsc-cart-count {
		position: absolute;
		top: 2px;
		right: 22%;
		background: var(--alert);
		color: var(--white);
		font-size: .65rem;
		min-width: 16px;
		height: 16px;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 .25rem;
		font-weight: 700;
	}
	.hsc-mobile-bar__wishlist.is-saved { color: var(--alert); }
	.hsc-mobile-bar__wishlist.is-saved .hsc-icon { color: var(--alert); }
}

/* =====================================================================
 * RTL — flip mobile bar cart badge
 * ===================================================================== */

html[dir="rtl"] .hsc-mobile-bar__cart .hsc-cart-count {
	right: auto;
	left: 22%;
}

/* =====================================================================
 * RESPONSIVE
 * ===================================================================== */

@media (max-width: 1024px) {
	.hsc-shop__layout {
		grid-template-columns: 200px 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.hsc-shop__layout {
		grid-template-columns: 1fr;
	}
	.hsc-shop__sidebar {
		position: static;
	}
	.hsc-filters {
		padding: 1rem;
	}
	.hsc-filters__group {
		padding: .5rem 0;
	}
	.hsc-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	.hsc-card__body {
		padding: .75rem;
	}
	.hsc-card__title {
		font-size: .9rem;
	}
	.hsc-card__price {
		font-size: .92rem;
	}
	.hsc-card__atc {
		padding: .55rem .75rem;
		font-size: .78rem;
	}
	.hsc-card__quickview {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
	.hsc-shop {
		padding-bottom: 6rem; /* leave room for mobile bar */
	}
	.hsc-quickview__inner {
		grid-template-columns: 1fr;
		max-height: 95vh;
	}
	.hsc-quickview__media {
		padding: 1rem;
	}
	.hsc-quickview__media img { max-height: 220px; }
	.hsc-quickview__body { padding: 1.25rem; }
}

@media (max-width: 480px) {
	.hsc-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: .75rem;
	}
}