:root {
  --primary: #0d5d86;
  --primary-dark: #0a3d63;
  --accent: #f05a28;
  --gold: #d8c233;
  --soft-blue: #7ab8d3;
  --text: #12324a;
  --muted: #60758c;
  --bg: #f3f7fb;
  --surface: #ffffff;
  --line: #e4edf5;
  --shadow: 0 20px 40px rgba(11, 42, 73, 0.12);
  --shadow-soft: 0 12px 28px rgba(11, 42, 73, 0.08);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; transition: .18s ease; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #edf1f6;
  box-shadow: 0 10px 30px rgba(13, 40, 70, 0.04);
}
.nav-row { display:flex; align-items:center; justify-content:space-between; gap:18px; min-height:86px; }
.brand { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand-logo { width:auto; height:34px; object-fit:contain; }
.main-nav, .nav-actions { display:flex; align-items:center; gap:14px; }
.main-nav a {
  padding:10px 12px;
  border-radius:999px;
  color:#345272;
  font-weight:600;
}
.main-nav a.active { color: var(--primary-dark); position: relative; }
.main-nav a.active::after {
  content:""; position:absolute; left:12px; right:12px; bottom:-9px; height:3px; border-radius:999px; background:var(--primary);
}
.main-nav a:hover { background:#eef5fb; }

.mobile-nav-wrap { display:none; }
.mobile-nav-toggle {
  display:none;
  align-items:center;
  justify-content:center;
  gap:5px;
  min-width:56px;
  min-height:56px;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  color:var(--primary-dark);
  cursor:pointer;
  box-shadow:0 10px 24px rgba(11, 42, 73, 0.08);
  flex-direction:column;
}
.mobile-nav-toggle span {
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background:currentColor;
}
.mobile-nav-toggle .mobile-nav-toggle-label {
  width:auto;
  height:auto;
  background:none;
  font-size:11px;
  font-weight:700;
  line-height:1;
  margin-top:3px;
}
.mobile-nav-overlay {
  position:fixed;
  inset:0;
  z-index:65;
  background:rgba(6, 24, 39, 0.42);
}
.mobile-nav-drawer {
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  width:min(360px, 88vw);
  padding:18px;
  background:#fff;
  z-index:70;
  transform:translateX(100%);
  transition:transform .22s ease;
  box-shadow:-20px 0 40px rgba(7, 29, 48, 0.18);
  display:flex;
  flex-direction:column;
  gap:18px;
}
body.mobile-menu-open .mobile-nav-drawer { transform:translateX(0); }
body.mobile-menu-open { overflow:hidden; }
.mobile-nav-drawer-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}
.mobile-drawer-logo { max-width:170px; height:34px; object-fit:contain; }
.mobile-nav-close {
  border:1px solid var(--line);
  background:#fff;
  width:44px;
  height:44px;
  border-radius:14px;
  color:var(--primary-dark);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.mobile-nav-menu {
  display:grid;
  gap:8px;
}
.mobile-nav-menu a {
  padding:14px 16px;
  border-radius:14px;
  font-weight:700;
  color:#294762;
  background:#f8fbfe;
  border:1px solid #edf2f7;
}
.mobile-nav-menu a:hover, .mobile-nav-menu a.active {
  background:#eef6fc;
  color:var(--primary-dark);
  border-color:#d8e6f1;
}
.mobile-nav-actions {
  display:grid;
  gap:10px;
  margin-top:auto;
}

.btn {
  border-radius: 14px;
  padding: 13px 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(9, 63, 103, 0.12); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: #fff; color: var(--primary); border-color: var(--line); }
.btn-outline:hover { background: #f7fbff; }

.hero { padding: 0; }
.hero-home { padding: 22px 0 42px; }
.hero-shell { position: relative; }
.hero-card { border:1px solid var(--line); border-radius:34px; overflow:hidden; box-shadow:var(--shadow); position:relative; }
.hero-card-home { display:grid; grid-template-columns:minmax(430px, 1.02fr) 1.18fr; min-height:520px; background:#fff; }
.hero-copy { padding:62px 56px; display:flex; flex-direction:column; justify-content:center; }
.hero-copy-home { background:linear-gradient(180deg, #0a3962 0%, #082f4f 100%); color:#fff; position:relative; z-index:2; }
.hero-copy-home::after {
  content:''; position:absolute; top:0; right:-108px; width:220px; height:100%; background:linear-gradient(180deg, #0a3962 0%, #082f4f 100%); border-top-right-radius:180px; border-bottom-right-radius:180px;
}
.hero-kicker {
  position:relative; z-index:2; display:inline-flex; align-self:flex-start; padding:9px 14px; margin-bottom:18px; border-radius:999px; background:rgba(255,255,255,.12); color:rgba(255,255,255,.82); font-size:14px; font-weight:700;
}
.hero-copy-home h1, .hero-copy-home p, .search-bar-home { position:relative; z-index:2; }
.hero-copy h1 { font-size:clamp(40px, 5vw, 66px); line-height:1.02; letter-spacing:-.03em; margin:0 0 18px; }
.hero-copy-home p { font-size:19px; line-height:1.7; color:rgba(255,255,255,.88); max-width:500px; margin:0 0 30px; }
.hero-visual { position:relative; min-height:520px; overflow:hidden; background:#dfe9f3; }
.hero-image { position:absolute; inset:0; background-position:center; background-size:cover; background-repeat:no-repeat; }
.hero-visual::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg, rgba(8,47,79,.14) 0%, rgba(8,47,79,0) 28%, rgba(8,47,79,0) 100%); }
.hero-overlay-art {
  position:absolute; z-index:2; pointer-events:none;
}

.search-bar { background:#fff; border-radius:18px; border:1px solid var(--line); overflow:hidden; box-shadow:0 12px 30px rgba(14, 53, 92, 0.08); }
.search-bar-home { display:grid; grid-template-columns:1fr 76px; max-width:560px; }
.search-bar input, .search-bar select { border:0; padding:22px; font-size:16px; color:var(--text); background:transparent; }
.search-bar input:focus, .search-bar select:focus { outline:none; }
.search-bar-home input::placeholder { color:#8698ae; }
.search-bar button { border:0; background:var(--primary); color:#fff; font-size:22px; }

.section { padding:32px 0; }
.section-home { padding-top:12px; position:relative; z-index:5; }
.grid-2 { display:grid; grid-template-columns:minmax(0, 1fr) 350px; gap:26px; align-items:stretch; }
.home-main-stack { display:flex; flex-direction:column; gap:18px; }
.home-featured-card { flex:1; }
.home-news-column { height:100%; }
.home-news-card { height:100%; display:flex; flex-direction:column; }
.home-news-footer { margin-top:auto; padding-top:18px; }
.card { background:var(--surface); border:1px solid var(--line); border-radius:24px; box-shadow:var(--shadow-soft); }
.card-pad { padding:22px; }
.section-title { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:18px; }
.section-title h2, .section-title h3 { margin:0; font-size:32px; letter-spacing:-.02em; }
.muted { color:var(--muted); }

.category-grid { display:grid; grid-template-columns:repeat(5, 1fr); overflow:hidden; }
.category-item { padding:28px 16px; text-align:center; border-right:1px solid var(--line); transition:background-color .18s ease, transform .18s ease; }
.category-item:last-child { border-right:0; }
.category-item:hover { background:#f8fbff; transform:translateY(-2px); }
.category-item .icon { width:60px; height:60px; border-radius:18px; margin:0 auto 14px; display:grid; place-items:center; font-size:26px; color:#fff; box-shadow:0 14px 26px rgba(10, 61, 99, 0.14); }

.store-grid { display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); gap:18px; }
.store-card { overflow:hidden; transition:transform .18s ease, box-shadow .18s ease; }
.store-card:hover { transform:translateY(-4px); box-shadow:0 18px 36px rgba(10, 42, 74, 0.12); }
.store-card .thumb { aspect-ratio:16 / 10; object-fit:cover; width:100%; }
.store-body { padding:16px 18px 18px; }
.store-body h3 { margin:8px 0 6px; font-size:24px; line-height:1.2; }
.badge, .status-pill { display:inline-flex; padding:7px 10px; border-radius:999px; font-size:13px; font-weight:700; }
.badge.open { background:rgba(75,155,87,.12); color:#337640; }
.badge.closed { background:rgba(207,84,60,.12); color:#a23e2d; }
.badge.pending, .status-pill.pending { background:#eef5fb; color:var(--primary-dark); }
.badge.success, .status-pill.success { background:rgba(75,155,87,.12); color:#337640; }
.badge.error, .status-pill.error { background:rgba(207,84,60,.12); color:#a23e2d; }
.meta-row { display:flex; flex-direction:column; gap:10px; color:var(--muted); font-size:14px; margin-top:14px; }

.news-list { display:flex; flex-direction:column; gap:16px; }
.news-item { display:grid; grid-template-columns:92px 1fr; gap:14px; align-items:start; padding:8px; margin:-8px; border-radius:16px; }
.news-item:hover { background:#f8fbff; }
.news-item img { border-radius:14px; width:92px; height:74px; object-fit:cover; }
.news-item h4 { margin:0 0 6px; font-size:18px; line-height:1.3; }
.news-list-home .news-item { margin:0; padding:0 0 16px; border-bottom:1px solid #edf2f7; border-radius:0; }
.news-list-home .news-item:last-child { border-bottom:0; padding-bottom:0; }
.news-list-home .news-item:hover { background:transparent; }

.cta-box { padding:22px; border-radius:24px; background:linear-gradient(135deg, #fff 0%, #f7fbff 100%); border:1px solid var(--line); box-shadow:var(--shadow-soft); }
.cta-box h3 { margin:0 0 8px; font-size:28px; }
.list-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:18px; }
.category-block { color:#fff; padding:26px; border-radius:24px; min-height:200px; display:flex; flex-direction:column; justify-content:end; box-shadow:0 16px 28px rgba(12, 40, 70, 0.12); transition:transform .18s ease, box-shadow .18s ease; }
.category-block:hover { transform:translateY(-4px); box-shadow:0 22px 40px rgba(12, 40, 70, 0.16); }

.page-hero { padding:46px 0 24px; }
.page-hero h1 { margin:0 0 10px; font-size:52px; letter-spacing:-.03em; }
.filters { display:grid; grid-template-columns:1.2fr .7fr .7fr .5fr; gap:14px; margin-top:18px; }
.filters input, .filters select { width:100%; padding:16px; border-radius:14px; border:1px solid var(--line); background:#fff; }
.detail-layout { display:grid; grid-template-columns:1.2fr .8fr; gap:24px; align-items:start; }
.detail-hero { overflow:hidden; }
.detail-hero img { width:100%; height:340px; object-fit:cover; }
.detail-content { padding:28px; }
.info-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:18px; }
.info-box { background:#f8fbff; border:1px solid #e3edf7; border-radius:18px; padding:16px; }
.hours-table { width:100%; border-collapse:collapse; }
.hours-table td { padding:10px 0; border-bottom:1px solid #e9eff5; }
.content-card { padding:24px; }

input[type="text"], input[type="email"], input[type="password"], input[type="date"], input[type="time"], input[type="url"], textarea, select {
  width:100%; padding:14px 16px; border:1px solid var(--line); border-radius:14px; background:#fff; color:var(--text); transition:border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
input:focus, textarea:focus, select:focus { outline:none; border-color:rgba(13, 93, 134, .55); box-shadow:0 0 0 4px rgba(13, 93, 134, .10); }
textarea { min-height:130px; resize:vertical; }
select[multiple] { min-height:180px; }
label { display:block; font-weight:700; margin-bottom:8px; }
.form-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; }
.form-grid .full { grid-column:1 / -1; }
.notice { padding:14px 16px; border-radius:14px; margin-bottom:16px; border:1px solid transparent; }
.notice.success { background:rgba(75,155,87,.12); color:#245f2d; border-color:rgba(75,155,87,.18); }
.notice.error { background:rgba(207,84,60,.12); color:#7d3529; border-color:rgba(207,84,60,.18); }

.table-wrap { background:#fff; border:1px solid var(--line); border-radius:22px; overflow:auto; box-shadow:var(--shadow-soft); }
table { width:100%; border-collapse:collapse; min-width:620px; }
thead th { background:#f8fbff; color:#35516e; font-size:14px; text-transform:uppercase; letter-spacing:.03em; }
th, td { padding:16px; border-bottom:1px solid #eef2f7; text-align:left; vertical-align:top; }
tbody tr:hover { background:#fbfdff; }
.table-wrap a { color:var(--primary); font-weight:700; }
.table-wrap a:hover { color:var(--primary-dark); }
.input-like { min-height:52px; border-radius:14px; border:1px solid var(--line); background:#f9fbfd; padding:14px 16px; display:flex; align-items:center; color:var(--text); }
.field-help { margin-top:8px; color:var(--muted); font-size:14px; }
.link-button { border:0; background:none; color:var(--primary); padding:0; font:inherit; cursor:pointer; text-decoration:underline; }
.link-button:hover { color: var(--primary-dark); }
.checkbox-line { display:inline-flex; align-items:center; gap:8px; white-space:nowrap; }

.section-login { padding:48px 0 64px; }
.login-layout { display:grid; grid-template-columns:minmax(0, 470px) minmax(0, 1fr); gap:24px; align-items:start; }
.login-card { margin:0; }
.login-side-card h2 { margin-top:0; }

.panel-body { background:linear-gradient(180deg, #eff4f9 0%, #f5f8fc 100%); }
.panel-layout { display:grid; grid-template-columns:300px minmax(0, 1fr); min-height:100vh; }
.sidebar { background:linear-gradient(180deg, #082f4f 0%, #0a3a61 100%); color:#eef6ff; padding:22px 18px; position:sticky; top:0; align-self:start; min-height:100vh; box-shadow:18px 0 40px rgba(5, 23, 39, 0.08); }
.panel-brand { display:flex; align-items:center; gap:12px; padding:8px 10px 18px; border-bottom:1px solid rgba(255,255,255,.08); margin-bottom:18px; }
.panel-brand-stack { display:flex; flex-direction:column; align-items:flex-start; gap:8px; }
.panel-brand-caption { display:block; color:rgba(231, 241, 251, .72); font-size:12px; letter-spacing:.06em; text-transform:uppercase; }
.panel-brand-logo { width:auto; max-width:160px; height:34px; object-fit:contain; }
.panel-user-card { display:grid; grid-template-columns:48px 1fr; gap:12px; padding:14px; border-radius:18px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.08); margin-bottom:18px; }
.panel-avatar { width:48px; height:48px; border-radius:16px; display:grid; place-items:center; font-weight:800; color:#0a3558; background:linear-gradient(180deg, #fff 0%, #deedf9 100%); }
.panel-user-card strong { display:block; font-size:15px; }
.panel-user-card span { display:block; font-size:13px; color:rgba(232,241,250,.76); }
.panel-nav-label { font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:rgba(232,241,250,.52); padding:0 10px 8px; }
.sidebar a { display:flex; align-items:center; gap:10px; padding:13px 14px; border-radius:14px; color:#e5eff8; margin-bottom:6px; border:1px solid transparent; }
.sidebar a:hover, .sidebar a.active { background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.10); }
.sidebar .panel-back-link { margin-top:20px; color:rgba(232,241,250,.88); }
.panel-main { padding:30px; min-width:0; }
.panel-topbar { display:flex; align-items:center; justify-content:space-between; gap:18px; margin-bottom:22px; }
.panel-titleblock span { display:inline-block; font-size:13px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#6e88a4; margin-bottom:6px; }
.panel-titleblock strong { display:block; font-size:28px; letter-spacing:-.02em; color:var(--text); }
.panel-topbar-actions { display:flex; gap:12px; flex-wrap:wrap; }
.panel-surface { background:rgba(255,255,255,.82); border:1px solid rgba(207, 220, 233, .8); border-radius:24px; padding:22px; box-shadow:var(--shadow-soft); }
.panel-main h1 { margin:0 0 8px; font-size:38px; letter-spacing:-.03em; }
.panel-main h2 { margin-top:0; font-size:28px; letter-spacing:-.02em; }
.stat-grid { display:grid; grid-template-columns:repeat(4, minmax(0, 1fr)); gap:16px; }
.stat-card { background:#fff; border:1px solid var(--line); border-radius:20px; padding:20px; box-shadow:var(--shadow-soft); }
.stat-card .num { font-size:34px; font-weight:800; margin-top:8px; }

.news-page-grid { display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:22px; }
.news-card-large { overflow:hidden; display:flex; flex-direction:column; }
.news-card-media img { width:100%; height:220px; object-fit:cover; }
.news-card-content { padding:22px; display:flex; flex-direction:column; height:100%; }
.news-card-meta { display:flex; align-items:center; gap:10px; color:var(--muted); font-size:14px; margin-bottom:10px; flex-wrap:wrap; }
.news-dot { width:5px; height:5px; border-radius:50%; background:#a4b4c6; }
.news-card-content h2 { margin:0 0 10px; font-size:26px; line-height:1.2; }
.news-card-content p { margin-top:0; margin-bottom:18px; }
.news-card-content .btn { margin-top:auto; }
.news-article-card p { margin:0; line-height:1.8; }
.registration-layout { display:grid; grid-template-columns:minmax(0, 1.2fr) 340px; gap:24px; align-items:start; }
.registration-card { padding:28px; }
.registration-side { display:grid; gap:18px; }
.benefit-list { display:grid; gap:10px; color:var(--muted); margin-top:14px; }
.registration-note h3 { margin-top:0; }
.category-preview { display:inline-flex; align-items:center; gap:10px; }
.category-preview-icon { width:38px; height:38px; display:grid; place-items:center; border-radius:12px; color:#fff; }

.site-footer { margin-top:38px; background:#0c2740; color:#e4edf5; }
.footer-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:24px; padding:36px 0; }
.footer-grid h4 { margin:0 0 12px; }
.footer-grid a, .footer-grid p { display:block; margin:0 0 8px; color:#d4e2ef; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding:16px 0 24px; color:#aac3d8; }

@media (max-width: 1240px) {
  .grid-2 { grid-template-columns:minmax(0, 1fr) 320px; }
  .store-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .news-page-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
  .hero-card-home, .grid-2, .detail-layout, .panel-layout, .login-layout, .registration-layout { grid-template-columns:1fr; }
  .hero-copy-home::after { display:none; }
  .hero-visual { min-height:340px; }
  .hero-card-home { min-height:auto; }
  .category-grid, .list-grid, .stat-grid, .info-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .filters, .form-grid { grid-template-columns:1fr; }
  .main-nav, .nav-actions { display:none; }
  .mobile-nav-toggle { display:inline-flex; }
  .sidebar { position:static; min-height:auto; border-bottom-left-radius:22px; border-bottom-right-radius:22px; }
  .panel-layout { gap:0; }
  .panel-main { padding-top:22px; }
}

@media (max-width: 760px) {
  .container { width:min(100% - 24px, 1280px); }
  .site-header { position:static; }
  .nav-row { min-height:76px; }
  .brand-logo { height:30px; }
  .hero-home { padding-top:0; padding-bottom:28px; }
  .hero-copy { padding:30px 24px; }
  .hero-kicker { font-size:12px; margin-bottom:14px; }
  .hero-copy p { font-size:17px; }
  .hero-card-home { border-radius:24px; }
  .hero-visual { min-height:240px; }
  .hero-overlay-art { max-width:58% !important; height:auto !important; top:auto !important; bottom:0 !important; }
  .search-bar-home { grid-template-columns:1fr; max-width:100%; }
  .search-bar-home button { min-height:62px; }
  .category-grid, .store-grid, .list-grid, .footer-grid, .stat-grid, .info-grid, .news-page-grid { grid-template-columns:1fr; }
  .category-grid { border-radius:24px; }
  .category-item { border-right:0; border-bottom:1px solid var(--line); }
  .category-item:last-child { border-bottom:0; }
  .section-title h2, .section-title h3 { font-size:26px; }
  .page-hero h1 { font-size:38px; }
  .detail-hero img { height:240px; }
  .panel-main { padding:18px 12px 24px; }
  .panel-topbar { flex-direction:column; align-items:flex-start; }
  .panel-surface { padding:16px; border-radius:18px; }
  .panel-main h1 { font-size:28px; }
  .panel-main h2 { font-size:24px; }
  table { min-width:560px; }
  th, td { padding:12px; }
  .news-card-media img { height:190px; }
  .news-card-content { padding:18px; }
  .news-card-content h2 { font-size:22px; }
  .panel-user-card { grid-template-columns:42px 1fr; }
  .panel-avatar { width:42px; height:42px; }
}

@media (max-width: 520px) {
  .hero-copy h1 { font-size:34px; }
  .hero-copy-home p { font-size:16px; }
  .news-item { grid-template-columns:78px 1fr; gap:12px; }
  .news-item img { width:78px; height:66px; }
  .store-body h3 { font-size:21px; }
  .card, .hero-card { border-radius:20px; }
  .card-pad, .content-card, .registration-card { padding:18px; }
  .btn { width:100%; }
  .form-grid { gap:14px; }
}


html, body { max-width:100%; overflow-x:hidden; }
main, .panel-main, .card, .panel-surface, .table-wrap { min-width:0; }

.home-grid { align-items:stretch; }
.home-news-column, .home-news-card { min-height:100%; }

@media (max-width: 1100px) {
  .nav-row {
    min-height:76px;
    gap:12px;
    flex-wrap:nowrap;
  }
  .mobile-nav-toggle { display:inline-flex; flex-shrink:0; }
  .brand { min-width:0; }
  .brand-logo { max-width:min(58vw, 260px); }
  .grid-2 { grid-template-columns:1fr; }
  .home-news-column { order:3; }
  .home-featured-card .store-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .nav-row { min-height:72px; }
  .brand-logo { height:28px; max-width:60vw; }
  .hero-card-home { grid-template-columns:1fr; }
  .hero-copy { padding:28px 22px; }
  .hero-copy h1 { max-width:100%; }
  .hero-visual { min-height:220px; }
  .hero-overlay-art {
    max-width:72% !important;
    max-height:82% !important;
    right:0 !important;
    bottom:0 !important;
    top:auto !important;
    object-fit:contain !important;
    object-position:right bottom !important;
  }
  .section { padding:24px 0; }
  .section-title { gap:8px; flex-wrap:wrap; }
  .home-main-stack { gap:14px; }
  .category-grid { gap:0; }
  .store-grid { grid-template-columns:1fr; gap:14px; }
  .home-featured-card .store-grid { grid-template-columns:1fr 1fr; }
  .store-card .thumb { aspect-ratio:16/9; }
  .meta-row { gap:8px; }
  .news-list-home .news-item {
    grid-template-columns:88px 1fr;
    align-items:start;
  }
  .news-list-home .news-item h4 { font-size:16px; }
  .page-hero { padding:26px 0 18px; }
  .page-hero h1 { font-size:34px; }
  .filters { gap:10px; }
  .detail-content { padding:18px; }
  .info-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:18px; }
  .footer-bottom { padding-bottom:18px; }
  .login-layout, .registration-layout, .detail-layout, .news-page-grid { grid-template-columns:1fr; }
  .panel-user-card { margin-bottom:14px; }
  .panel-main { padding:16px 10px 22px; }
  .panel-surface { padding:14px; }
  .panel-topbar-actions, .panel-topbar-actions .btn { width:100%; }
  .table-wrap { margin-inline:-2px; border-radius:18px; }
  table { min-width:520px; }
}

@media (max-width: 560px) {
  .container { width:min(100% - 18px, 1280px); }
  .mobile-nav-drawer { width:min(100vw, 100%); border-top-left-radius:24px; border-bottom-left-radius:24px; }
  .mobile-nav-toggle {
    min-width:52px;
    min-height:52px;
    padding:12px 14px;
  }
  .hero-kicker { font-size:11px; }
  .hero-copy h1 { font-size:30px; }
  .hero-copy-home p { font-size:15px; }
  .search-bar input { padding:16px 18px; }
  .search-bar-home button { min-height:54px; font-size:18px; }
  .home-featured-card .store-grid,
  .news-page-grid,
  .stat-grid,
  .category-grid,
  .list-grid { grid-template-columns:1fr; }
  .store-body { padding:14px; }
  .store-body h3 { font-size:19px; }
  .news-item { grid-template-columns:72px 1fr; }
  .news-item img { width:72px; height:60px; }
  .btn { min-height:48px; }
  .panel-brand { justify-content:center; }
  .panel-brand-stack { align-items:center; width:100%; }
  .panel-brand-logo { max-width:140px; }
}

@media (hover:none) and (pointer:coarse) {
  .btn:hover,
  .store-card:hover,
  .news-item:hover,
  .category-item:hover,
  .category-block:hover { transform:none; box-shadow:inherit; }
}


/* === v11 mobile/menu/home improvements === */
.mobile-nav-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-drawer {
  visibility: hidden;
  pointer-events: none;
  will-change: transform;
}

.mobile-nav-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

@media (max-width: 1100px) {
  .mobile-nav-drawer,
  .mobile-nav-overlay {
    display: block;
  }
}

.home-featured-card .store-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-featured-card .store-card {
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(10, 42, 74, 0.08);
}

.home-featured-card .store-card .thumb {
  aspect-ratio: 16 / 8.5;
}

.home-featured-card .store-body {
  padding: 12px 13px 14px;
}

.home-featured-card .store-body h3 {
  margin: 8px 0 4px;
  font-size: 18px;
}

.home-featured-card .badge {
  padding: 6px 9px;
  font-size: 12px;
}

.home-featured-card .meta-row {
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
}

.home-featured-card .muted {
  font-size: 13px;
}

.home-news-card {
  display: flex;
  flex-direction: column;
}

.home-news-card .news-list-home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-news-card .news-item {
  padding: 10px;
  margin: 0;
  border: 1px solid var(--line);
  background: #fbfdff;
}

.home-news-card .news-item h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.home-news-footer {
  margin-top: auto;
  padding-top: 14px;
}

.card,
.panel-surface,
.hero-card,
.store-card,
.news-card {
  min-width: 0;
}

@media (max-width: 760px) {
  .home-featured-card .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-featured-card .store-card .thumb {
    aspect-ratio: 16 / 9;
  }

  .home-featured-card .store-body h3 {
    font-size: 16px;
  }

  .home-featured-card .meta-row {
    font-size: 12px;
  }

  .home-news-card .news-item {
    grid-template-columns: 84px 1fr;
  }
}

@media (max-width: 560px) {
  .home-featured-card .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-featured-card .store-body {
    padding: 11px 11px 13px;
  }

  .home-featured-card .store-body h3 {
    font-size: 15px;
    line-height: 1.25;
  }

  .home-featured-card .meta-row {
    gap: 5px;
    font-size: 11px;
  }

  .home-featured-card .badge {
    font-size: 11px;
    padding: 5px 8px;
  }

  .home-news-card .news-item {
    grid-template-columns: 76px 1fr;
    gap: 10px;
  }

  .home-news-card .news-item img {
    width: 76px;
    height: 62px;
  }
}


/* === v12 mobile menu visibility fix + homepage compact stores === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 4000;
}

.mobile-nav-overlay {
  z-index: 5000 !important;
}

.mobile-nav-drawer {
  z-index: 5001 !important;
}

body.mobile-menu-open .site-header,
body.mobile-menu-open .nav-row {
  z-index: 5002;
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    z-index: 4000;
  }
}

.home-featured-card .store-grid,
.store-grid.store-grid-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-featured-card .store-card {
  border-radius: 16px;
}

.home-featured-card .store-card .thumb,
.store-grid-home .store-card .thumb {
  aspect-ratio: 16 / 7.5;
}

.home-featured-card .store-body,
.store-grid-home .store-body {
  padding: 12px;
}

.home-featured-card .store-body h3,
.store-grid-home .store-body h3 {
  font-size: 18px;
  margin: 7px 0 4px;
}

.home-featured-card .meta-row,
.store-grid-home .meta-row {
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
}

.home-featured-card .badge,
.store-grid-home .badge {
  padding: 5px 8px;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .home-featured-card .store-grid,
  .store-grid.store-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-featured-card .store-grid,
  .store-grid.store-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-featured-card .store-card .thumb,
  .store-grid-home .store-card .thumb {
    aspect-ratio: 16 / 9;
  }

  .home-featured-card .store-body,
  .store-grid-home .store-body {
    padding: 10px;
  }

  .home-featured-card .store-body h3,
  .store-grid-home .store-body h3 {
    font-size: 16px;
  }

  .home-featured-card .meta-row,
  .store-grid-home .meta-row {
    font-size: 12px;
  }
}


/* === v13 mobile menu redesign + homepage polish === */
.mobile-nav-overlay {
  background: rgba(7, 22, 36, 0.46);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-drawer {
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
  border-left: 1px solid rgba(228,237,245,.9);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  padding: 16px;
}
.mobile-nav-drawer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 132px;
  background: linear-gradient(180deg, rgba(10,57,98,.08) 0%, rgba(10,57,98,0) 100%);
  pointer-events: none;
}
.mobile-nav-drawer-head,
.mobile-nav-menu,
.mobile-nav-actions {
  position: relative;
  z-index: 1;
}
.mobile-nav-drawer-head {
  padding: 8px 2px 14px;
  margin-bottom: 8px;
}
.mobile-drawer-logo {
  max-width: 168px;
  height: 32px;
}
.mobile-nav-close {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(11, 42, 73, 0.08);
}
.mobile-nav-menu {
  gap: 10px;
}
.mobile-nav-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(11, 42, 73, 0.06);
}
.mobile-nav-menu a::after {
  content: '›';
  color: #8aa5bb;
  font-size: 22px;
  line-height: 1;
}
.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  background: linear-gradient(180deg, #f0f8ff 0%, #eaf5fd 100%);
  color: var(--primary-dark);
  border-color: #d6e7f4;
}
.mobile-nav-menu a.active::after {
  color: var(--primary);
}
.mobile-nav-actions {
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.mobile-nav-actions .btn {
  min-height: 54px;
  border-radius: 16px;
}
.mobile-nav-toggle {
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(11, 42, 73, 0.10);
}
body.mobile-menu-open .mobile-nav-toggle {
  background: #eef6fc;
  border-color: #d7e8f3;
}
body.mobile-menu-open .mobile-nav-toggle span:not(.mobile-nav-toggle-label):nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.mobile-menu-open .mobile-nav-toggle span:not(.mobile-nav-toggle-label):nth-child(2) {
  opacity: 0;
}
body.mobile-menu-open .mobile-nav-toggle span:not(.mobile-nav-toggle-label):nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav-toggle span {
  transition: transform .18s ease, opacity .18s ease, background-color .18s ease;
}
.store-grid-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.store-grid-home .store-card .thumb {
  aspect-ratio: 16 / 9;
}
.store-grid-home .store-body {
  padding: 14px 14px 16px;
}
.store-grid-home .store-body h3 {
  font-size: 21px;
}
.store-grid-home .meta-row {
  gap: 6px;
  font-size: 13px;
}
@media (max-width: 1100px) {
  .store-grid-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .mobile-nav-drawer {
    width: min(390px, 92vw);
    padding: 14px;
  }
  .store-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .store-grid-home .store-body h3 {
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .mobile-nav-drawer {
    width: calc(100vw - 8px);
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
  }
  .mobile-nav-drawer-head {
    padding-top: 6px;
  }
  .mobile-nav-menu a {
    min-height: 54px;
    padding: 14px 16px;
    font-size: 15px;
  }
  .store-grid-home {
    grid-template-columns: 1fr 1fr;
  }
  .store-grid-home .meta-row {
    display: none;
  }
}

.mobile-nav-note { position: relative; z-index:1; margin-top: 8px; color: var(--muted); font-size: 13px; text-align: center; }


/* === v14 full-screen mobile overlay menu + winkels/news style cards === */
@media (max-width: 1100px) {
  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 6000 !important;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
  }

  .mobile-nav-drawer {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom)) 18px;
    border-radius: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: none;
    transform: translateY(-16px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-nav-drawer::before {
    display: none;
  }

  .mobile-nav-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-nav-drawer-head {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    padding: 6px 0 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(212, 225, 236, 0.88);
  }

  .mobile-drawer-logo {
    max-width: min(58vw, 210px);
    height: 30px;
  }

  .mobile-nav-close {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    border-color: rgba(206, 220, 232, 0.95);
    box-shadow: 0 8px 24px rgba(10, 42, 74, 0.12);
  }

  .mobile-nav-menu {
    gap: 12px;
    padding: 8px 0 18px;
  }

  .mobile-nav-menu a {
    min-height: 62px;
    padding: 18px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(216, 229, 240, 0.94);
    box-shadow: 0 12px 28px rgba(10, 42, 74, 0.08);
    font-size: 17px;
  }

  .mobile-nav-actions {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 225, 236, 0.88);
  }

  .mobile-nav-actions .btn {
    min-height: 54px;
    border-radius: 18px;
  }

  .mobile-nav-note {
    margin-top: 14px;
    padding-bottom: 8px;
    font-size: 14px;
  }

  body.mobile-menu-open .site-header {
    z-index: 6002;
  }
}

/* homepage populaire winkels compacter en altijd max 6 in 3 x 2 uitstraling */
.store-grid-home,
.home-featured-card .store-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.store-grid-home .store-card,
.home-featured-card .store-card {
  border-radius: 18px;
  overflow: hidden;
}

.store-grid-home .store-card .thumb,
.home-featured-card .store-card .thumb {
  aspect-ratio: 16 / 8;
}

.store-grid-home .store-body,
.home-featured-card .store-body {
  padding: 12px 12px 14px;
}

.store-grid-home .store-body h3,
.home-featured-card .store-body h3 {
  font-size: 18px;
  line-height: 1.22;
  margin: 7px 0 4px;
}

.store-grid-home .meta-row,
.home-featured-card .meta-row {
  gap: 6px;
  margin-top: 9px;
  font-size: 12px;
}

.store-grid-home .badge,
.home-featured-card .badge {
  font-size: 11px;
  padding: 5px 8px;
}

/* winkels overzichtspagina meer als nieuws: 3 strakke kaarten naast elkaar */
.stores-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.stores-page-grid .store-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
}

.stores-page-grid .store-card .thumb {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.stores-page-grid .store-body {
  padding: 18px;
}

.stores-page-grid .store-body h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 10px 0 6px;
}

.stores-page-grid .meta-row {
  margin-top: 12px;
  gap: 8px;
  font-size: 13px;
}

.stores-page-grid .badge {
  align-self: flex-start;
}

@media (max-width: 1100px) {
  .stores-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .store-grid-home,
  .home-featured-card .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .store-grid-home .store-body h3,
  .home-featured-card .store-body h3 {
    font-size: 16px;
  }

  .store-grid-home .meta-row,
  .home-featured-card .meta-row {
    display: none;
  }

  .stores-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .stores-page-grid .store-card .thumb {
    aspect-ratio: 16 / 10;
  }

  .stores-page-grid .store-body {
    padding: 14px;
  }

  .stores-page-grid .store-body h3 {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .mobile-nav-toggle {
    min-width: 50px;
    min-height: 50px;
    padding: 11px 12px;
  }

  .mobile-nav-toggle .mobile-nav-toggle-label {
    font-size: 10px;
  }

  .store-grid-home,
  .home-featured-card .store-grid,
  .stores-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stores-page-grid .meta-row,
  .store-grid-home .meta-row,
  .home-featured-card .meta-row {
    display: none;
  }
}

@media (max-width: 420px) {
  .store-grid-home,
  .home-featured-card .store-grid,
  .stores-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .store-grid-home .store-body,
  .home-featured-card .store-body,
  .stores-page-grid .store-body {
    padding: 11px;
  }

  .store-grid-home .store-body h3,
  .home-featured-card .store-body h3,
  .stores-page-grid .store-body h3 {
    font-size: 15px;
  }
}


/* === winkel.php mobile width fix === */
.detail-layout > div,
.detail-layout > aside,
.store-sidebar,
.content-card,
.info-box,
.section-title,
.news-list,
.news-item,
.store-map {
  min-width: 0;
}

.store-map, .store-map iframe {
  width: 100%;
  max-width: 100%;
}

.hours-table {
  table-layout: fixed;
}

.hours-table td {
  word-break: break-word;
}

.info-box a,
.content-card a,
.news-item h4,
.muted,
p {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .detail-layout {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .detail-layout > div,
  .detail-layout > aside,
  .store-sidebar {
    width: 100%;
    max-width: 100%;
  }

  .content-card {
    padding: 16px;
  }

  .section-title {
    align-items: flex-start;
  }

  .section-title h2 {
    min-width: 0;
    font-size: 22px;
  }

  .hours-table,
  .hours-table tbody,
  .hours-table tr {
    width: 100%;
  }

  .hours-table td {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .hours-table tr td:first-child {
    font-weight: 700;
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .hours-table tr td:last-child {
    padding-top: 0;
  }

  .store-map iframe {
    height: 240px !important;
  }
}

@media (max-width: 520px) {
  .page-hero h1 {
    font-size: 28px;
  }

  .detail-hero img {
    height: 210px;
  }

  .news-item {
    grid-template-columns: 64px 1fr;
    gap: 10px;
  }

  .news-item img {
    width: 64px;
    height: 56px;
  }

  .store-map iframe {
    height: 210px !important;
  }
}



/* === OPEN STATUS BANNER === */
.open-status-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  margin-bottom:14px;
  border-radius:14px;
  border:1px solid rgba(13,93,134,.12);
  background:#f8fbff;
  flex-wrap:wrap;
}
.open-status-banner strong{
  font-size:15px;
}
.open-status-banner span{
  color:#4b5b73;
  font-size:14px;
}
.open-status-banner.open{
  background:#ecfdf3;
  border-color:#b7ebc8;
}
.open-status-banner.open strong{ color:#166534; }
.open-status-banner.closed{
  background:#fff8f1;
  border-color:#f6d4ab;
}
.open-status-banner.closed strong{ color:#9a3412; }

/* === BULK HOLIDAY PAGE === */
.bulk-special-form .detail-layout{
  align-items:start;
}
.bulk-toolbar{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
  flex-wrap:wrap;
}
.bulk-toolbar input[type="text"]{
  min-width:240px;
  max-width:360px;
}
.bulk-store-groups{
  display:grid;
  gap:16px;
}
.bulk-store-group{
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px;
  background:#fff;
}
.bulk-group-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.bulk-store-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.bulk-store-item{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:12px;
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.06);
}
.bulk-store-item input{
  width:auto;
  margin:0;
}
.special-hour-row{
  display:grid;
  grid-template-columns:1.05fr 1.4fr .8fr .8fr .8fr auto;
  gap:12px;
  align-items:end;
  padding:14px 0;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.special-hour-row:last-child{ border-bottom:none; }
.special-hour-row .special-closed-check{
  display:flex;
  align-items:center;
  padding-bottom:10px;
}
.special-hour-row .special-closed-check label{
  display:flex;
  gap:8px;
  align-items:center;
  white-space:nowrap;
}
.btn-small{
  padding:10px 12px;
  font-size:13px;
}
.btn-link{
  border:none;
  background:transparent;
  color:var(--primary, #0d5d86);
  padding:0;
  cursor:pointer;
}
.btn-danger{
  background:#ef4444;
  color:#fff;
}
.inline-check{
  display:flex;
  align-items:center;
  gap:8px;
}

@media (max-width: 900px){
  .bulk-store-list{
    grid-template-columns:1fr;
  }
  .special-hour-row{
    grid-template-columns:1fr 1fr;
  }
  .special-hour-row .special-closed-check{
    padding-bottom:0;
  }
}
@media (max-width: 640px){
  .open-status-banner{
    align-items:flex-start;
  }
  .special-hour-row{
    grid-template-columns:1fr;
  }
}






/* === DEFINITIEVE FIX OPENINGSTIJDEN V3 === */
.hours-table-wrap{
  width:100%;
  overflow:hidden;
  border-radius:14px;
}
.hours-table{
  width:100%;
  min-width:0;
  border-collapse:collapse;
  table-layout:fixed;
}
.hours-table tr{
  transition:background .2s ease;
}
.hours-table tr:hover{
  background:rgba(15,23,42,.04);
}
.hours-table tr.is-today{
  background:rgba(13,93,134,.08);
}
.hours-table td{
  padding:12px 16px;
  box-sizing:border-box;
  vertical-align:middle;
  overflow:visible;
}
.hours-table td:first-child{
  width:60%;
}
.hours-table td:last-child{
  width:40%;
  text-align:right;
  white-space:nowrap;
  color:#19344f;
}
.hours-day-label{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.hours-time{
  display:inline-block;
  width:100%;
}
.hours-time.is-open-now{
  font-weight:700;
  color:#0d5d86;
}
.hours-today-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:22px;
  padding:3px 8px;
  border-radius:999px;
  background:#0d5d86;
  color:#fff;
  font-size:11px;
  font-weight:700;
  line-height:1;
}
@media (max-width:640px){
  .hours-table td{
    padding:12px;
  }
  .hours-table td:first-child{
    width:54%;
  }
  .hours-table td:last-child{
    width:46%;
    font-size:14px;
  }
}


/* banner */
.top-banner{
background:#0d5d86;
color:#fff;
text-align:center;
padding:10px;
font-weight:600;
}



/* FIX Voeg winkel toe knop - juiste header variant */
.site-header .nav-actions .btn-outline,
.site-header .mobile-nav-actions .btn-outline {
  background: #fff !important;
  border: 1.5px solid var(--line) !important;
  color: var(--primary-dark) !important;
  box-shadow: none !important;
}

.site-header .nav-actions .btn-outline:hover,
.site-header .mobile-nav-actions .btn-outline:hover {
  background: #f7fbff !important;
  border-color: #c8d9e6 !important;
  color: var(--primary-dark) !important;
  box-shadow: 0 10px 20px rgba(9, 63, 103, 0.08) !important;
}

.site-header .nav-actions .btn-primary,
.site-header .mobile-nav-actions .btn-primary {
  color: #fff !important;
}


/* === winkel.php mobiel: openingstijden + actieknoppen fix === */
@media (max-width: 768px) {
  .store-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
  }

  .store-actions .btn {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    text-align: center !important;
    padding: 10px 8px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
  }

  .hours-table {
    table-layout: fixed !important;
    width: 100% !important;
  }

  .hours-table tr {
    display: table-row !important;
  }

  .hours-table td {
    display: table-cell !important;
    padding: 12px 12px !important;
    vertical-align: middle !important;
  }

  .hours-table td:first-child {
    width: 54% !important;
  }

  .hours-table td:last-child {
    width: 46% !important;
    text-align: right !important;
    white-space: nowrap !important;
    padding-left: 8px !important;
  }

  .hours-time {
    display: inline-block !important;
    width: auto !important;
    min-width: 0 !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  .hours-day-label {
    justify-content: flex-start !important;
  }
}

@media (max-width: 480px) {
  .store-actions .btn {
    font-size: 13px !important;
    padding: 10px 6px !important;
  }

  .hours-table td:first-child {
    width: 52% !important;
  }

  .hours-table td:last-child {
    width: 48% !important;
  }
}


/* === vaste sidebar voor admin en winkelbeheer === */
@media (min-width: 1025px) {
  .panel-body {
    overflow: hidden !important;
  }

  .panel-layout {
    display: grid !important;
    grid-template-columns: 280px minmax(0, 1fr) !important;
    min-height: 100vh !important;
    height: 100vh !important;
    overflow: hidden !important;
  }

  .sidebar {
    position: sticky !important;
    top: 0 !important;
    align-self: start !important;
    height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 22px 16px 28px !important;
    scrollbar-width: thin;
  }

  .panel-main {
    min-width: 0 !important;
    height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .panel-surface {
    min-width: 0 !important;
  }
}

/* menu-items mooier passend */
.sidebar a,
.sidebar .panel-back-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  min-height: 44px !important;
  padding: 11px 14px !important;
  border-radius: 12px !important;
  line-height: 1.35 !important;
  white-space: normal !important;
  word-break: break-word !important;
}

.panel-nav-label {
  margin: 18px 0 8px !important;
  padding: 0 6px !important;
  font-size: 12px !important;
  letter-spacing: .04em !important;
}

.panel-brand {
  margin-bottom: 18px !important;
}

.panel-brand-logo {
  max-width: 100% !important;
  height: auto !important;
}

.panel-user-card {
  margin-bottom: 14px !important;
}

.sidebar::-webkit-scrollbar {
  width: 8px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
}
.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

/* mobiel/tablet: normale flow houden */
@media (max-width: 1024px) {
  .panel-body {
    overflow-x: hidden !important;
  }

  .panel-layout {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
  }

  .sidebar {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
  }

  .panel-main {
    height: auto !important;
    overflow: visible !important;
  }
}


/* === Premium acties === */
.actions-grid{
  align-items:stretch;
}
.action-card .news-content{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.action-meta-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.action-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:auto;
}
.action-premium-note{
  padding:14px 16px;
  border-radius:14px;
  background:#f8fbff;
  border:1px solid rgba(13,93,134,.12);
}
.action-status-buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
@media (max-width:768px){
  .action-links .btn,
  .action-status-buttons .btn{
    width:100%;
    text-align:center;
  }
}


/* === Acties pagina netter === */
.action-card-premium{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(9,63,103,.08);
}
.action-card-premium .news-image{
  height:220px;
}
.action-card-premium .news-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.action-card-premium .news-content{
  padding:18px;
}
.action-card-premium h3{
  font-size:20px;
  line-height:1.25;
  margin:4px 0 0;
}
.action-store-name{
  display:inline-block;
  font-size:14px;
  color:#4b647d;
  font-weight:600;
}
.action-description{
  color:#44576d;
  min-height:66px;
}
.action-links{
  margin-top:6px;
}
.action-links .btn{
  min-width:150px;
}

/* compactere pagetitel/hero */
.page-hero{
  padding:32px 0 22px !important;
}
.page-hero h1{
  font-size:34px !important;
  line-height:1.1 !important;
  margin-bottom:8px !important;
}
.page-hero .muted,
.page-hero p{
  font-size:16px !important;
  max-width:760px;
}

@media (max-width: 768px){
  .page-hero{
    padding:22px 0 14px !important;
  }
  .page-hero h1{
    font-size:26px !important;
    margin-bottom:6px !important;
  }
  .page-hero .muted,
  .page-hero p{
    font-size:14px !important;
    line-height:1.45 !important;
  }
  .action-card-premium .news-image{
    height:180px;
  }
  .action-card-premium h3{
    font-size:18px;
  }
  .action-description{
    min-height:0;
  }
}

@media (max-width: 480px){
  .page-hero{
    padding:18px 0 10px !important;
  }
  .page-hero h1{
    font-size:22px !important;
  }
  .page-hero .muted,
  .page-hero p{
    font-size:13px !important;
  }
  .action-card-premium .news-image{
    height:160px;
  }
}
