#humn-shop-app {
	--humn-accent: #7cb2cc;
	--humn-black: #111111;
	--humn-cream: #f7f5f1;
	font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
	max-width: 640px;
	margin: 0 auto;
	padding: 16px;
	color: var(--humn-black);
	padding-bottom: 140px; /* room for sticky cart bar, incl. receipt field */
}

.humn-shop-loading,
.humn-shop-error,
.humn-shop-empty {
	text-align: center;
	padding: 48px 16px;
	color: #777;
	font-weight: 300;
}

.humn-shop-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

@media (min-width: 480px) {
	.humn-shop-grid { grid-template-columns: repeat(3, 1fr); }
}

.humn-shop-card {
	background: var(--humn-cream);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0,0,0,0.06);
}

.humn-shop-card-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: #e8e5df;
}

.humn-shop-card-img-placeholder {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #e8e5df;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b7b3a9;
	font-size: 12px;
	font-weight: 500;
}

.humn-shop-card-body {
	padding: 10px 12px 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.humn-shop-card-name {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.25;
}

.humn-shop-card-price {
	font-size: 13px;
	color: #555;
	font-weight: 300;
}

.humn-shop-card-actions {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.humn-shop-add-btn {
	background: var(--humn-black);
	color: #fff;
	border: none;
	border-radius: 999px;
	width: 32px;
	height: 32px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease;
}
.humn-shop-add-btn:hover { background: var(--humn-accent); }

.humn-shop-qty-stepper {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border-radius: 999px;
	padding: 2px 4px;
}
.humn-shop-qty-stepper button {
	background: none;
	border: none;
	width: 26px;
	height: 26px;
	font-size: 16px;
	cursor: pointer;
	color: var(--humn-black);
}
.humn-shop-qty-stepper span {
	min-width: 16px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
}

.humn-shop-cartbar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--humn-black);
	color: #fff;
	padding: 12px 20px 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	z-index: 999;
	box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.humn-shop-cartbar.hidden { display: none; }

.humn-shop-cartbar-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.humn-shop-receipt-toggle {
	font-size: 12px;
	font-weight: 300;
	color: #ccc;
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	user-select: none;
}
.humn-shop-receipt-toggle input {
	accent-color: var(--humn-accent);
}

.humn-shop-receipt-email {
	width: 100%;
	box-sizing: border-box;
	padding: 8px 10px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.06);
	color: #fff;
	font-size: 13px;
	font-family: inherit;
}
.humn-shop-receipt-email::placeholder {
	color: #888;
}

.humn-shop-cartbar-summary {
	font-size: 14px;
	font-weight: 300;
}
.humn-shop-cartbar-total {
	font-weight: 500;
}

.humn-shop-checkout-btn {
	background: var(--humn-accent);
	color: var(--humn-black);
	border: none;
	border-radius: 999px;
	padding: 10px 20px;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
}
.humn-shop-checkout-btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.humn-shop-header {
	margin: 4px 0 24px;
}

.humn-shop-title {
	font-weight: 500;
	font-size: 28px;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--humn-cream);
}

.humn-shop-subtitle {
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 0.02em;
	color: var(--humn-accent);
	margin-top: 4px;
}
