/*
  Extracted theme from webroot/sign-up-1.html
  File: webroot/css/theme-graygreen.css
  Purpose: centralize color variables and related theme styles (gray/green)
*/
:root {
	--db-green: #3d9a5c;
	--db-green-light: #e8f5ed;
	--db-green-mid: #c3e6cf;
	--green-dark: #1a3d2b;
	--green-mid: #2d6a4f;
	--green-accent: #52b788;
	--gold: #d4a843;
	--gold-light: #f0c96b;
	--off-white: #f8f9f4;
	--text-muted: #6c7a6e;
	--border: #dde8e1;
}

/* ── Dark-mode palette ── */
[data-bs-theme="dark"] {
	--db-green-light: #1a2e22;
	--db-green-mid: #1e3a28;
	--off-white: #121212;
	--text-muted: #9aa19b;
	--border: #2a3a2d;
}

/* ── Color-scheme detection toggle ── */
@media (prefers-color-scheme: dark) {
	html[data-bs-theme="auto"] {
		color-scheme: dark;
	}
}

html, body {
	height: 100%;
}

/* Use column flex layout so footer can be pushed to bottom when content is short */
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ── Top wordmark ── */
.db-wordmark {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	color: var(--db-green);
	text-decoration: none;
}

.db-wordmark span {
	color: inherit;
	opacity: 0.55;
	font-weight: 400;
}

/* ── Hero block ── */
.db-hero {
	padding: 5rem 0 3.5rem;
}

/* Ensure main-ish page containers grow to fill available space */
main,
.db-pane,
.product-body,
.db-hero {
    flex: 1 0 auto;
}

.db-hero h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 1.15;
}

.db-hero .lead {
	max-width: 38ch;
	margin: 0 auto;
	opacity: 0.7;
}

/* ── Nav tabs ── */
.db-tabs .nav-link {
	color: inherit;
	opacity: 0.6;
	border: none;
	border-bottom: 2px solid transparent;
	padding: 0.65rem 1.4rem;
	font-weight: 500;
	border-radius: 0;
	transition: opacity 0.18s, border-color 0.18s;
}

.db-tabs .nav-link:hover {
	opacity: 1;
	border-bottom-color: var(--db-green-mid);
}

.db-tabs .nav-link.active {
	opacity: 1;
	color: var(--db-green);
	border-bottom-color: var(--db-green);
	background: transparent;
}

.db-tabs .nav-link .bi {
	font-size: 1.1em;
}

/* ── Tab pane cards ── */
.db-pane {
	padding: 3rem 0 5rem;
}

.db-card {
	border: 1px solid var(--bs-border-color);
	border-radius: 1rem;
	overflow: hidden;
}

.db-card-accent {
	background: var(--db-green-light);
	padding: 2.5rem 2.5rem 2rem;
	border-bottom: 1px solid var(--db-green-mid);
}

.db-card-body {
	padding: 2.5rem;
}

.db-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--db-green);
	background: var(--db-green-mid);
	padding: 0.2em 0.7em;
	border-radius: 2rem;
	margin-bottom: 1rem;
}

.db-card-accent h2 {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	margin-bottom: 0.5rem;
}

.db-card-accent p {
	opacity: 0.75;
	margin-bottom: 0;
	font-size: 0.97rem;
	max-width: 42ch;
}

/* page cards */
.age-card,
.contact-card,
.loc-card {
	max-width: 760px;
	margin: 3rem auto;
}

.age-actions > button,
.contact-card .btn,
.loc-card .btn {
	min-width: 10rem;
}

.status {
	min-height: 2rem;
}

.contact-card p {
	font-size: 1rem;
}

/* perks list */
.db-perks {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}

.db-perks li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.93rem;
	padding: 0.35rem 0;
	opacity: 0.8;
}

.db-perks .bi {
	color: var(--db-green);
	margin-top: 0.15em;
	flex-shrink: 0;
}

/* ── Form controls ── */
.form-control,
.form-select {
	border-radius: 0.6rem;
	padding: 0.7rem 1rem;
	font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--db-green);
	box-shadow: 0 0 0 0.2rem rgba(61, 154, 92, 0.2);
}

/* ── Submit button ── */
.btn-db {
	background: var(--db-green);
	color: #fff;
	border: none;
	border-radius: 0.6rem;
	padding: 0.75rem 2rem;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	transition: background 0.18s, transform 0.12s;
}

.btn-db:hover {
	background: #2e7a48;
	color: #fff;
	transform: translateY(-1px);
}

.btn-db:active {
	transform: translateY(0);
}

/* ── Footer ── */
.db-footer {
	padding: 2rem 0;
	font-size: 0.82rem;
	opacity: 0.45;
	border-top: 1px solid var(--bs-border-color);
}

/* ── Deals page helpers ── */
.topnav {
	background: var(--green-dark);
	padding: 1rem 0;
	position: relative;
	z-index: 100;
	border-bottom: 1px solid rgba(255,255,255,.12);
	box-shadow: none;
}
.nav-logo {
	font-weight: 800;
	font-size: 1.25rem;
	color: #fff;
	text-decoration: none;
}
.nav-logo span {
	color: var(--gold-light);
}
.nav-pill {
	font-size: .82rem;
	color: rgba(255,255,255,.75);
	text-decoration: none;
	padding: .35rem .85rem;
	border-radius: 100px;
	transition: background .15s, color .15s;
}
.nav-pill:hover {
	background: rgba(255,255,255,.08);
	color: #fff;
}
.nav-pill.active {
	background: rgba(255,255,255,.12);
	color: #fff;
}
.location-chip {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 100px;
	padding: .45rem .9rem;
	color: #fff;
	font-size: .9rem;
	font-weight: 600;
	white-space: nowrap;
}
.location-chip .bi {
	color: var(--gold-light);
	font-size: .9rem;
}
.location-chip .chevron {
	font-size: .65rem;
	opacity: .6;
}
.location-hint {
	font-size: .78rem;
	color: rgba(255,255,255,.65);
	margin-top: .15rem;
}
.btn-nav-cta {
	background: var(--gold);
	color: var(--green-dark);
	font-weight: 700;
	font-size: .82rem;
	padding: .35rem 1rem;
	border-radius: 6px;
	text-decoration: none;
	transition: background .15s;
	white-space: nowrap;
}
.btn-nav-cta:hover {
	background: var(--gold-light);
	color: var(--green-dark);
}
.deal-banner {
	background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
	padding: 2rem 0 1.5rem;
	border-bottom: 3px solid var(--gold);
	margin-bottom: 1.5rem;
}
.deal-date {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: .4rem;
}
.deal-title {
	font-size: clamp(1.3rem, 4vw, 2rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin-bottom: .4rem;
}
.stats-strip {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin-top: .9rem;
}
.stat-num {
	font-size: 1rem;
	font-weight: 800;
	color: var(--gold-light);
	line-height: 1;
}
.stat-lbl {
	font-size: .65rem;
	color: rgba(255,255,255,.5);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-top: .1rem;
}
.reset-box {
	background: rgba(0,0,0,.25);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 10px;
	padding: .65rem 1rem;
	text-align: center;
}
.reset-label {
	font-size: .65rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255,255,255,.5);
	margin-bottom: .2rem;
}
.reset-clock {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--gold-light);
	letter-spacing: .04em;
	font-variant-numeric: tabular-nums;
}
.reset-note {
	font-size: .65rem;
	color: rgba(255,255,255,.35);
	margin-top: .15rem;
}
.filter-bar {
	background: transparent;
	border-bottom: 1px solid var(--border);
	padding: .75rem 0;
	position: relative;
	top: auto;
	z-index: 1;
	box-shadow: none;
}
.filter-pill {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	font-size: .8rem;
	font-weight: 600;
	padding: .3rem .85rem;
	border-radius: 100px;
	border: 1.5px solid var(--border);
	color: var(--text-muted);
	background: #fff;
	cursor: pointer;
	white-space: nowrap;
	transition: all .15s;
	text-decoration: none;
}
.filter-pill:hover {
	border-color: var(--green-accent);
	color: var(--green-mid);
	background: rgba(82,183,136,.06);
}
.filter-pill.active {
	border-color: var(--green-mid);
	background: var(--green-mid);
	color: #fff;
}
.filter-pill .count {
	font-size: .7rem;
	background: rgba(0,0,0,.12);
	border-radius: 100px;
	padding: .05rem .4rem;
	font-weight: 700;
}
.filter-pill.active .count {
	background: rgba(255,255,255,.25);
}
.filter-scroll {
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: .1rem .05rem;
}
.filter-scroll::-webkit-scrollbar {
	display: none;
}
.deals-grid {
	padding: 1rem 0 3rem;
}
.store-card {
	/* background: #fff; */
	background: var(--bs-body-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
}
.store-header {
	padding: .8rem 1rem .65rem;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: flex-start;
	gap: .65rem;
}
.store-avatar {
	width: 38px;
	height: 38px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 800;
	font-size: .9rem;
	flex-shrink: 0;
}
.store-details {
	flex: 1;
	min-width: 0;
}
.store-name {
	font-weight: 700;
	font-size: .92rem;
	line-height: 1.2;
}
.store-meta-row {
	display: flex;
	align-items: center;
	gap: .4rem;
	flex-wrap: wrap;
	margin-top: .2rem;
}
.store-location {
	font-size: .72rem;
	color: var(--text-muted);
	display: inline-flex;
	align-items: center;
	gap: .25rem;
}
.store-location .bi {
	font-size: .75rem;
}
.store-license {
	font-size: .62rem;
	font-weight: 700;
	color: var(--green-accent);
	background: rgba(82,183,136,.1);
	border: 1px solid rgba(82,183,136,.25);
	border-radius: 4px;
	padding: .08rem .38rem;
}
.store-dist {
	font-size: .65rem;
	font-weight: 700;
	color: var(--text-muted);
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: .08rem .45rem;
	display: inline-flex;
	align-items: center;
	gap: .2rem;
}
.deal-row {
	padding: .65rem 1rem;
	border-bottom: 1px solid #f0f5f2;
	cursor: pointer;
	transition: background .12s;
}
.deal-row:last-child {
	border-bottom: none;
}
.deal-row:hover {
	background: #f0f5ff;
}
.deal-row-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: .75rem;
	margin-bottom: .2rem;
}
.deal-name {
	flex: 1;
	min-width: 0;
	font-size: .85rem;
	font-weight: 600;
}
.deal-price {
	font-size: .9rem;
	font-weight: 800;
	color: var(--green-dark);
	white-space: nowrap;
	flex-shrink: 0;
}
.deal-row-bottom {
	display: flex;
	align-items: center;
	gap: 0;
	flex-wrap: wrap;
}
.deal-cat-text,
.meta-unit-price,
.meta-unit-price-per-miligram,
.meta-pkg {
	font-size: .72rem;
}
.deal-cat-text,
.meta-pkg {
	color: var(--text-muted);
}
.meta-unit-price,
.meta-unit-price-per-miligram {
	font-weight: 600;
	color: var(--green-dark);
}
.meta-sep {
	font-size: .72rem;
	color: var(--border);
	margin: 0 .3rem;
}
footer {
	background: var(--green-dark);
	color: rgba(255,255,255,.55);
	font-size: 0.82rem;
	padding: 1.5rem 0;
	/* allow footer to sit at bottom when content is short */
	margin-top: auto;
}
.footer-logo {
	font-weight: 800;
	color: #fff;
	font-size: 1.1rem;
}
.footer-logo span {
	color: var(--gold-light);
}
footer a {
	color: rgba(255,255,255,.55);
	text-decoration: none;
}
footer a:hover {
	color: var(--gold-light);
}

.footer-links {
	font-size: .78rem;
}

.footer-meta {
	font-size: .72rem;
	opacity: .65;
}

.footer-subtitle {
	font-size: .75rem;
	opacity: .75;
}

.store-avatar {
	background: linear-gradient(135deg, #1a4a3d, #2d7a65);
}

/* ── Utility ── */
.text-green {
	color: var(--db-green) !important;
}

/* ── Product page additions moved from product.php ── */
.product-banner {
	background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
	padding: 1.25rem 0 1.5rem;
	border-bottom: 3px solid var(--gold);
}

.breadcrumb-back {
	display: inline-flex; align-items: center; gap: .35rem;
	font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6);
	text-decoration: none; margin-bottom: .85rem; transition: color .15s;
}
.breadcrumb-back:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,.3); margin: 0 .2rem; }
.breadcrumb-back.breadcrumb-disabled { pointer-events: none; }
.breadcrumb-back .store-link { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb-back .store-link:hover { color: var(--gold-light); }

.product-eyebrow {
	font-size: .72rem; font-weight: 600; letter-spacing: .06em;
	text-transform: uppercase; color: rgba(255,255,255,.55);
	margin-bottom: .35rem;
}
.product-eyebrow .cat-text { color: var(--gold-light); }

.product-name {
	font-size: clamp(1.3rem, 4vw, 2rem); font-weight: 800;
	color: #fff; line-height: 1.2; margin-bottom: .65rem;
}

.product-price-row { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.product-price { font-size: 1.75rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.product-ppg { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.65); }
.product-pkg { font-size: .8rem; color: rgba(255,255,255,.5); }
.price-sep { color: rgba(255,255,255,.25); }

.product-body { flex: 1; padding: 1.25rem 0 3rem; }

.detail-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 1rem; }
.detail-card-header { padding: .65rem 1rem .55rem; border-bottom: 1px solid var(--border); font-size: .8rem; font-weight: 700; color: var(--green-dark); letter-spacing: .02em; text-transform: uppercase; }
.detail-card-body { padding: .85rem 1rem; }

.attr-row { display: flex; align-items: flex-start; gap: .75rem; padding: .35rem 0; border-bottom: 1px solid #f5f7f5; font-size: .83rem; }
.attr-row:last-child { border-bottom: none; }
.attr-label { color: var(--text-muted); font-weight: 500; width: 6rem; flex-shrink: 0; }
.attr-value { font-weight: 600; color: var(--green-dark); flex: 1; }

.product-description { font-size: .85rem; color: var(--text-muted); line-height: 1.6; padding: .5rem 0 .25rem; }

.tag-list { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .25rem; }
.tag { font-size: .7rem; font-weight: 600; padding: .15rem .55rem; border-radius: 4px; background: rgba(82,183,136,.1); border: 1px solid rgba(82,183,136,.25); color: var(--green-mid); }

.avail-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.avail-card-header { padding: .65rem 1rem .55rem; border-bottom: 1px solid var(--border); font-size: .8rem; font-weight: 700; color: var(--green-dark); letter-spacing: .02em; text-transform: uppercase; display: flex; align-items: center; justify-content: space-between; }
.avail-count { font-size: .72rem; font-weight: 600; color: var(--text-muted); font-style: normal; letter-spacing: 0; text-transform: none; }

.store-entry { padding: .85rem 1rem; border-bottom: 1px solid #f0f5f2; }
.store-entry:last-child { border-bottom: none; }
.store-entry-top { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: .45rem; }
.store-avatar { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: .82rem; flex-shrink: 0; }
.store-entry-name { font-size: .88rem; font-weight: 700; color: var(--green-dark); line-height: 1.2; margin-bottom: .1rem; }
.store-entry-name a { color: inherit; text-decoration: none; }
.store-entry-name a:hover { color: var(--green-mid); text-decoration: underline; }
.store-entry-location { font-size: .75rem; color: var(--text-muted); }

.store-entry-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .4rem; }
.store-status-inline { display: inline-flex; align-items: center; gap: .3rem; font-size: .73rem; font-weight: 600; }
.store-status-inline .dot { width: 6px; height: 6px; border-radius: 50%; }
.store-status-inline.open .dot { background: var(--green-accent); }
.store-status-inline.open { color: var(--green-mid); }
.store-status-inline.closed .dot { background: #d9534f; }
.store-status-inline.closed { color: #a0392b; }

.store-info-tags { display: flex; gap: .3rem; flex-wrap: wrap; }
.store-tag { font-size: .65rem; font-weight: 600; padding: .1rem .45rem; border-radius: 4px; background: var(--off-white); border: 1px solid var(--border); color: var(--text-muted); }

.btn-view-store { display: inline-flex; align-items: center; gap: .3rem; font-size: .78rem; font-weight: 700; padding: .3rem .85rem; border-radius: 6px; border: 1.5px solid var(--green-mid); color: var(--green-mid); text-decoration: none; transition: background .15s, color .15s; white-space: nowrap; }
.btn-view-store:hover { background: var(--green-mid); color: #fff; }

.store-entry-price { font-size: .88rem; font-weight: 800; color: var(--green-dark); }

.product-image { width:100%; max-height:320px; object-fit:cover; display:block; }
.empty-stores { padding:1.5rem 1rem; text-align:center; font-size:.83rem; color:var(--text-muted); }
.store-details { flex:1; min-width:0; }
.store-geo-icon { font-size:.6rem; color:var(--green-accent); }
.store-link { color:inherit; text-decoration:none; }
.store-link:hover { color:var(--gold-light); }

.footer-subtitle { font-size:.75rem; }
.footer-links { font-size:.78rem; }
.footer-meta { font-size:.72rem; opacity:.65; }

/* ── Store page styles (migrated from webroot/store.php) ── */
.store-banner {
	position: relative;
	background-color: var(--green-dark);
	background-size: cover;
	background-position: center;
	padding: 1.25rem 0;
	border-bottom: 3px solid var(--gold);
}
.store-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 30, 18, 0.82);
}
.store-banner .container { position: relative; }

.breadcrumb-back {
	display: inline-flex; align-items: center; gap: .35rem;
	font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6);
	text-decoration: none; margin-bottom: .85rem; transition: color .15s;
}
.breadcrumb-back:hover { color: var(--gold-light); }

.store-banner-body { display: flex; align-items: flex-start; gap: 1rem; }

.store-avatar-lg {
	width: 56px; height: 56px; border-radius: 12px;
	background: linear-gradient(135deg, #1a4a3d, #2d7a65);
	display: flex; align-items: center; justify-content: center;
	color: #fff; font-weight: 800; font-size: 1.25rem; flex-shrink: 0;
	border: 2px solid rgba(255,255,255,.18);
}

.store-banner-info { flex: 1; min-width: 0; }

.store-chain-label { font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .25rem; }
.store-banner-name { font-size: clamp(1.2rem, 3.5vw, 1.75rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: .3rem; }
.store-location-line { font-size: .82rem; color: rgba(255,255,255,.72); margin-bottom: .45rem; }

.store-status-row { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: .45rem; }
.open-pill { display: inline-flex; align-items: center; gap: .3rem; font-size: .75rem; font-weight: 700; padding: .2rem .65rem; border-radius: 100px; }
.open-pill.open   { background: rgba(82,183,136,.25); border: 1px solid rgba(82,183,136,.5); color: #6be8a8; }
.open-pill.closed { background: rgba(220,80,80,.22);  border: 1px solid rgba(220,80,80,.4);  color: #f59090; }
.open-pill .dot   { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.hours-label { font-size: .78rem; color: rgba(255,255,255,.65); }

.store-type-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .4rem; }
.type-tag { font-size: .68rem; font-weight: 600; padding: .15rem .55rem; border-radius: 4px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.85); }
.store-info-muted { font-size: .75rem; color: rgba(255,255,255,.45); }

.hours-row { display: flex; justify-content: space-between; align-items: center; padding: .25rem 0; font-size: .8rem; border-bottom: 1px solid #f5f7f5; }
.hours-row:last-child { border-bottom: none; }
.hours-row.today { font-weight: 700; color: var(--green-dark); border-left: 3px solid var(--gold); padding-left: .5rem; margin-left: -.75rem; padding-right: 0; }
.hours-row.today .hours-time { color: var(--green-mid); }
.hours-day { color: var(--text-muted); }
.hours-row.today .hours-day { color: var(--green-dark); font-weight: 700; }
.hours-time { font-weight: 500; }

.contact-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; padding: .3rem 0; border-bottom: 1px solid #f5f7f5; }
.contact-item:last-child { border-bottom: none; }
.contact-item .bi { color: var(--green-accent); font-size: .95rem; flex-shrink: 0; margin-top: .05rem; }

.info-item { display: flex; align-items: center; gap: .6rem; font-size: .82rem; padding: .25rem 0; border-bottom: 1px solid #f5f7f5; }
.info-item:last-child { border-bottom: none; }
.info-item .bi { color: var(--green-accent); font-size: .9rem; flex-shrink: 0; }

.sidebar-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	color: var(--green-dark);
}
.sidebar-card-header {
	padding: .65rem 1rem .55rem;
	border-bottom: 1px solid var(--border);
	font-size: .8rem;
	font-weight: 700;
	color: var(--green-dark);
	letter-spacing: .02em;
	text-transform: uppercase;
}
.sidebar-card-body {
	padding: .85rem 1rem;
	color: rgba(0, 0, 0, .75);
}
.sidebar-card-body .hours-row { color: rgba(0, 0, 0, .85); }
.sidebar-card-body .hours-row.today { color: var(--green-dark); }
.sidebar-card-body .hours-row.today .hours-day { color: var(--green-dark); font-weight: 700; }
.sidebar-card-body-compact { padding: .5rem .75rem; }

.section-heading { font-size: .85rem; font-weight: 700; color: var(--green-dark); padding: .75rem 1rem .5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.section-heading .deal-count { font-size: .72rem; font-weight: 600; color: var(--text-muted); }

.products-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.about-text { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* empty state used on store page */
.empty-products {
	padding: 2rem 1rem;
	text-align: center;
	color: var(--text-muted);
	font-size: .85rem;
}

/* Small helpers used by store.php */
.geo-icon { color: var(--gold-light); font-size: .8rem; }
.link-reset { color: inherit; text-decoration: none; }
