:root {
  --bg: #050806;
  --bg-soft: #0b120d;
  --surface: #f3f7f3;
  --surface-strong: #ffffff;
  --line: #d6e3d8;
  --text: #0c140f;
  --muted: #587060;
  --primary: #22c55e;
  --primary-dark: #0f7a37;
  --accent: #86efac;
  --danger: #dc2626;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(5, 8, 6, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.brand strong,
.brand small {
  display: block;
}

.brand-logo {
  width: auto;
  height: 48px;
  max-width: 190px;
  object-fit: contain;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f7a37, #22c55e 58%, #86efac);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(34, 197, 94, 0.3);
}

.site-nav,
.admin-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: linear-gradient(135deg, #14532d, #22c55e);
  color: #ffffff !important;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.hero {
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(134, 239, 172, 0.16), transparent 26%),
    linear-gradient(180deg, #050806 0%, #0b120d 100%);
  padding: 0;
}

.hero-grid,
.split-grid,
.product-detail-grid,
.contact-grid,
.info-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.14);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 16px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-text,
.lead {
  font-size: 1.08rem;
}

.hero-text,
.hero p,
.hero-card span {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}

.button,
.text-link,
.danger-button {
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
}

.button:hover,
.text-link:hover,
.danger-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.button-secondary {
  color: var(--text);
  background: #ffffff;
}

.button-danger {
  color: #ffffff;
  background: linear-gradient(135deg, #991b1b, #dc2626);
}

.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points span,
.pill,
.filter-bar a,
.table-subtitle {
  font-size: 0.92rem;
}

.hero-points span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.admin-stats {
  display: grid;
  gap: 16px;
}

.hero-banner-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1008;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-banner-full {
  aspect-ratio: 1920 / 1008;
}

.hero .hero-banner-shell {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.hero-banner-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(5, 8, 6, 0.94) 0%, rgba(11, 18, 13, 0.98) 100%);
}

.hero-banner-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-banner-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 6, 0.1) 0%, rgba(5, 8, 6, 0.24) 100%),
    linear-gradient(90deg, rgba(34, 197, 94, 0.08) 0%, rgba(5, 8, 6, 0) 35%, rgba(5, 8, 6, 0.12) 100%);
}

.hero-banner-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-banner-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(5, 8, 6, 0.58);
  backdrop-filter: blur(10px);
  font-size: 1.4rem;
  line-height: 1;
}

.hero-banner-dots {
  position: absolute;
  left: 18px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-banner-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-banner-dot.is-active {
  background: #ffffff;
}

.hero-banner-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.28), transparent 30%),
    radial-gradient(circle at bottom left, rgba(134, 239, 172, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(5, 8, 6, 0.9) 0%, rgba(11, 18, 13, 0.98) 100%);
}

.stat-card,
.panel-card,
.category-card,
.product-card,
.info-card,
.flash,
.admin-table-card,
.admin-form-card,
.login-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.section,
.page-hero {
  padding: 76px 0;
}

.page-hero {
  background: linear-gradient(180deg, #f7fbf7 0%, #edf5ee 100%);
}

.section-heading {
  margin-bottom: 28px;
}

.surface {
  background: var(--surface);
}

.category-grid,
.product-grid {
  display: grid;
  gap: 22px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.product-card,
.panel-card,
.info-card {
  background: var(--surface-strong);
  padding: 26px;
  border: 1px solid var(--line);
}

.category-card {
  display: flex;
  flex-direction: column;
}

.category-card-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 16px;
  margin-bottom: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #eef5ef, #fbfdfb);
  overflow: hidden;
}

.category-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #dcfce7, #ecfdf3);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.category-card a,
.product-card a,
.text-link {
  color: var(--primary-dark);
  font-weight: 700;
}

.category-card a {
  margin-top: auto;
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 16px;
  background: linear-gradient(135deg, #eef5ef, #fbfdfb);
}

.product-card-content {
  padding: 24px;
}

.product-card-cta {
  color: var(--primary-dark);
  font-weight: 700;
}

.pill {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #dcfce7;
  color: var(--primary-dark);
  font-weight: 700;
}

.split-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clean-list {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.clean-list li {
  margin-bottom: 10px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-bar a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: #edf4ee;
  font-weight: 600;
}

.filter-bar a.active {
  background: #0c140f;
  color: #ffffff;
}

.empty-state {
  padding: 42px 28px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px dashed var(--line);
  background: #ffffff;
}

.product-detail-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-main-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #f2f7f3, #fbfdfb);
  overflow: hidden;
  cursor: zoom-in;
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.18s ease;
  will-change: transform;
}

.product-main-image-frame.is-zooming .product-main-image {
  transform: scale(2.8);
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-thumb-button {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, #f2f7f3, #fbfdfb);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb-button:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 101, 52, 0.35);
}

.product-thumb-button.is-active {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 2px rgba(22, 101, 52, 0.12);
}

.thumb-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.video-embed-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  aspect-ratio: 16 / 9;
}

.video-embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 56px 0 28px;
  color: #ffffff;
  background: linear-gradient(180deg, #050806 0%, #020402 100%);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.flash {
  margin-top: 20px;
  padding: 14px 18px;
  border: 1px solid transparent;
}

.flash-success {
  color: #14532d;
  background: #ecfdf3;
  border-color: #86efac;
}

.flash-error {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

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

.form-grid.compact {
  grid-template-columns: 1fr;
}

.form-grid label,
.field-label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-section {
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.form-section.first {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.form-section h2 {
  margin-bottom: 8px;
}

.form-section p {
  margin-bottom: 0;
}

.inline-helper {
  display: flex;
  align-items: center;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
}

textarea {
  resize: vertical;
}

.checkbox-field {
  display: flex !important;
  align-items: center;
  gap: 12px !important;
  padding: 16px;
  border-radius: 18px;
  background: #f5f9f5;
  border: 1px solid var(--line);
}

.checkbox-field input {
  width: 18px;
  height: 18px;
}

.login-body,
.admin-body {
  min-height: 100vh;
  background: linear-gradient(180deg, #edf5ee 0%, #f8fbf8 100%);
}

.login-body {
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(520px, 100%);
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.login-brand {
  margin-bottom: 24px;
  color: var(--text);
}

.login-brand small {
  color: var(--muted);
}

.login-helper {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #f5f9f5;
  border: 1px solid var(--line);
}

.admin-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  padding: 28px;
  color: #ffffff;
  background: linear-gradient(180deg, #050806 0%, #0b120d 100%);
  font-size: 0.95rem;
}

.admin-nav {
  flex-direction: column;
  align-items: stretch;
  margin: 28px 0;
}

.admin-nav a {
  padding: 14px 16px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.admin-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.admin-user {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-user strong,
.admin-user span {
  display: block;
}

.admin-user span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.admin-content {
  padding: 32px;
  font-size: 0.95rem;
}

.admin-content h1 {
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  letter-spacing: -0.03em;
}

.admin-content h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
}

.admin-content h3 {
  font-size: 1.02rem;
}

.admin-topbar,
.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-topbar p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.admin-content p,
.admin-content label,
.admin-content input,
.admin-content textarea,
.admin-content select,
.admin-content td,
.admin-content th,
.admin-content .text-link,
.admin-content .danger-button {
  font-size: 0.95rem;
}

.admin-topbar-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-table-card,
.admin-form-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.admin-form-card + .admin-form-card {
  margin-top: 24px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e7efe8;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.92rem;
}

.table-subtitle {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.88rem;
}

.actions-cell {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  min-width: max-content;
}

.actions-cell form {
  margin: 0;
}

.category-image-field {
  display: grid;
  gap: 12px;
}

.admin-category-image-preview,
.admin-category-table-image {
  display: block;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #f5f8f5;
  object-fit: contain;
}

.admin-category-image-preview {
  width: min(100%, 320px);
  aspect-ratio: 16 / 9;
}

.admin-category-table-image {
  width: 92px;
  height: 60px;
}

.checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.checkbox-inline input {
  width: auto;
  margin: 0;
}

.field-help {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
}

.danger-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--danger);
  font-weight: 700;
}

.admin-shortcuts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.admin-shortcut-card {
  display: block;
  padding: 24px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.admin-shortcut-card strong,
.admin-shortcut-card span {
  display: block;
}

.admin-shortcut-card strong {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.98rem;
}

.admin-shortcut-card span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.admin-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.admin-banner-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #f9fcf9;
}

.admin-banner-card img {
  width: 100%;
  aspect-ratio: 1920 / 1008;
  padding: 10px;
  object-fit: contain;
  border-radius: 16px;
  background: #000000;
}

.banner-actions {
  justify-content: flex-start;
}

.image-card {
  display: grid !important;
  gap: 10px !important;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #f5f9f5;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 10px;
  object-fit: contain;
  border-radius: 14px;
  background: #f5f8f5;
}

.image-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.image-card input {
  width: 18px;
  height: 18px;
}

.logo-preview-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #f5f9f5;
}

.logo-preview-image {
  max-width: 280px;
  max-height: 90px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .product-detail-grid,
  .contact-grid,
  .footer-grid,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .product-grid,
  .info-grid,
  .admin-image-grid,
  .admin-banner-grid,
  .admin-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    background: rgba(5, 8, 6, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .admin-sidebar {
    padding-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .section,
  .page-hero {
    padding: 56px 0;
  }

  .hero {
    padding: 0;
  }

  .category-grid,
  .product-grid,
  .info-grid,
  .admin-image-grid,
  .admin-banner-grid,
  .admin-shortcuts,
  .thumb-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner-shell,
  .hero-banner-viewport,
  .hero-banner-slide img,
  .hero-banner-placeholder {
    min-height: 0;
  }

  .header-shell {
    min-height: 72px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .site-nav a {
    text-align: center;
  }

  .admin-content,
  .admin-sidebar,
  .login-card,
  .admin-table-card,
  .admin-form-card {
    padding: 22px;
  }

  .admin-topbar,
  .table-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
