:root {
  --ink: #1d2733;
  --muted: #667085;
  --line: #e4e7ec;
  --surface: #ffffff;
  --soft: #f6f7f9;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --accent: #f97316;
  --accent-soft: #fff4e8;
  --info: #2563eb;
  --danger: #b42318;
  --success: #067647;
  --shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background: #fbfbfc;
  color: var(--ink);
  font-family: Segoe UI, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.top-bar {
  background: #1d2733;
  color: #f8fafc;
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  min-height: 34px;
  align-items: center;
}

.top-bar a {
  color: #ffffff;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: conic-gradient(from 190deg, var(--brand), #22c55e, var(--accent), var(--brand));
}

.brand-logo {
  width: auto;
  height: 42px;
  max-width: 160px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a,
.nav-links span {
  padding: 8px 10px;
  border-radius: 8px;
  color: #344054;
  font-size: 14px;
}

.nav-links a:hover {
  background: var(--soft);
}

.page {
  padding: 30px 0 54px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  padding: 28px 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-links span {
  margin-right: auto;
  font-weight: 800;
  color: var(--ink);
}

.hero-slider {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdfa, #fff7ed);
  border: 1px solid #dff4ee;
  border-radius: 8px;
}

.hero-slider h1 {
  margin: 0 0 12px;
  max-width: 720px;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.05;
}

.hero-slider p {
  margin: 0 0 22px;
  max-width: 640px;
  color: #475467;
  font-size: 18px;
}

.hero-art {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 36px 0 16px;
}

.section-head h2,
.section-head h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(16, 24, 40, 0.04);
}

.category-card,
.content-card {
  padding: 18px;
}

.product-card {
  overflow: hidden;
}

.product-image {
  aspect-ratio: 4 / 3;
  background: #eef2f6;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-body {
  padding: 16px;
}

.product-title {
  min-height: 48px;
  margin: 0 0 8px;
  font-size: 17px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 14px;
  font-weight: 800;
  color: var(--brand-dark);
}

.price del {
  color: #98a2b3;
  font-weight: 500;
}

.rating {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.tracking-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.track-step {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 8px;
  background: #f2f4f7;
  color: var(--muted);
  font-weight: 800;
}

.track-step.active {
  background: #dcfce7;
  color: var(--success);
}

.cms-content {
  font-size: 17px;
  line-height: 1.7;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: var(--brand-dark);
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn.secondary:hover {
  background: var(--soft);
}

.btn.accent {
  background: var(--accent);
}

.btn.danger {
  background: var(--danger);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: #9a3412;
  font-size: 13px;
  font-weight: 700;
}

.filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
  color: #344054;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.alert {
  padding: 12px 14px;
  margin: 0 0 16px;
  border-radius: 8px;
  background: #eff8ff;
  border: 1px solid #b2ddff;
  color: #175cd3;
}

.alert.error {
  background: #fffbfa;
  border-color: #fecdca;
  color: var(--danger);
}

.alert.success {
  background: #ecfdf3;
  border-color: #abefc6;
  color: var(--success);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.data-table th {
  background: #f8fafc;
  color: #344054;
  font-weight: 800;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.main-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: #eef2f6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.main-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.thumbnail-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}

.thumbnail-row img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.thumbnail-button.active img,
.thumbnail-button:focus-visible img {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(8, 163, 16, 0.16);
}

.summary-panel {
  padding: 20px;
  position: sticky;
  top: 92px;
}

.qty-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.account-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
}

.side-nav {
  display: grid;
  gap: 6px;
  align-self: start;
  padding: 12px;
}

.side-nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.side-nav a:hover {
  background: var(--soft);
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
}

.admin-nav {
  align-self: start;
  padding: 12px;
}

.admin-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #344054;
  font-weight: 650;
}

.admin-nav a:hover {
  background: var(--soft);
}

.admin-main {
  min-width: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 18px;
}

.metric strong {
  display: block;
  font-size: 30px;
}

.empty {
  padding: 28px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-slider,
  .product-detail,
  .account-shell,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
  }

  .grid-4,
  .grid-3,
  .filters,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-slider {
    padding: 22px;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .filters,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .qty-row {
    grid-template-columns: 1fr;
  }
}

/* Modern header, menu, uploads, editor, and admin refresh */
.top-bar-inner {
  justify-content: space-between;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-menu {
  position: relative;
}

.account-menu summary,
.category-menu summary,
.nested-menu summary {
  cursor: pointer;
  list-style: none;
}

.account-menu summary::-webkit-details-marker,
.category-menu summary::-webkit-details-marker,
.nested-menu summary::-webkit-details-marker {
  display: none;
}

.account-popover {
  position: absolute;
  right: 0;
  top: 32px;
  z-index: 40;
  display: grid;
  min-width: 170px;
  padding: 8px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.account-popover a {
  color: var(--ink);
  padding: 9px 10px;
  border-radius: 8px;
}

.account-popover a:hover {
  background: var(--soft);
}

.nav {
  align-items: center;
}

.nav-links a,
.nav-links span,
.category-menu summary,
.nested-menu summary {
  padding: 8px 10px;
  border-radius: 8px;
  color: #344054;
  font-size: 14px;
}

.category-menu {
  position: relative;
}

.category-dropdown {
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 35;
  min-width: 260px;
  max-height: 70vh;
  overflow-y: auto;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nested-menu {
  padding: 3px 0;
}

.nested-menu a {
  display: block;
  margin-left: 10px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 5px 16px rgba(16, 24, 40, 0.05);
}

.icon-box svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-slider-full {
  margin-top: -30px;
}

.home-slider-full .hero-slider {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  min-height: 430px;
  padding-left: max(34px, calc((100vw - 1180px) / 2 + 34px));
  padding-right: max(34px, calc((100vw - 1180px) / 2 + 34px));
}

.upload-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.upload-preview img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
}

.upload-preview span {
  color: var(--muted);
  font-size: 13px;
  word-break: break-all;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.editor-btn {
  min-height: 32px;
  padding: 5px 10px;
  font-size: 13px;
}

.admin-layout {
  grid-template-columns: 260px minmax(0, 1fr);
}

.admin-nav {
  position: sticky;
  top: 92px;
  background: #111827;
  border-color: #111827;
  box-shadow: var(--shadow);
}

.admin-nav a {
  color: #e5e7eb;
}

.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 920px) {
  .admin-nav {
    position: static;
  }
}

@media (max-width: 620px) {
  .top-bar-inner,
  .top-right {
    justify-content: flex-start;
  }

  .social-links {
    display: none;
  }

  .nav-actions {
    align-self: flex-end;
  }

  .category-dropdown {
    position: static;
    min-width: 100%;
    max-height: none;
    margin-top: 6px;
  }

  .home-slider-full .hero-slider {
    padding: 24px 16px;
    min-height: 520px;
  }
}

/* Compact, light admin panel */
.admin-layout {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 16px;
}

.admin-nav {
  padding: 8px;
  background: #f8fafc;
  border-color: #e4e7ec;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.05);
}

.admin-menu-group {
  margin-bottom: 6px;
}

.admin-menu-group summary,
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 7px 8px;
  border-radius: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
}

.admin-menu-group summary {
  color: #0f172a;
  background: #eef2f6;
}

.admin-menu-group summary::-webkit-details-marker {
  display: none;
}

.admin-menu-group a {
  margin: 3px 0 0 12px;
}

.admin-nav a:hover,
.admin-menu-group summary:hover {
  background: #e7f5f2;
  color: var(--brand-dark);
}

.admin-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  border-radius: 5px;
  border: 1px solid #cbd5e1;
  background: #fff;
}

.admin-icon::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--brand);
}

.admin-main .content-card,
.admin-main .metric,
.admin-main .category-card {
  padding: 12px;
}

.admin-main .field {
  gap: 4px;
  margin-bottom: 10px;
}

.admin-main .field label,
.admin-main .data-table th,
.admin-main .btn,
.admin-main .pill {
  font-weight: 500;
}

.admin-main input[type="text"],
.admin-main input[type="email"],
.admin-main input[type="password"],
.admin-main input[type="number"],
.admin-main input[type="date"],
.admin-main input[type="datetime-local"],
.admin-main select,
.admin-main textarea {
  min-height: 36px;
  padding: 7px 9px;
}

.admin-main textarea {
  min-height: 86px;
}

.admin-main .data-table th,
.admin-main .data-table td {
  padding: 8px 10px;
}

.admin-main .btn {
  min-height: 34px;
  padding: 7px 10px;
}

.compact-table {
  min-width: 0 !important;
}

.compact-table td {
  padding: 6px 8px;
}

/* Holychem-inspired storefront theme */
:root {
  --hh-green-dark: #087842;
  --hh-green: #08a310;
  --hh-leaf: #a9ea5c;
  --hh-blue-dark: #074259;
  --hh-blue: #076d91;
  --hh-aqua: #65b0bd;
  --hh-bg: #f4fff7;
  --hh-white: #ffffff;
  --hh-text: #133d3a;
  --hh-muted: #5b7772;
  --hh-border: #d8efe0;
  --hh-shadow: 0 18px 44px rgba(7, 66, 89, 0.12);
  --ink: var(--hh-text);
  --muted: var(--hh-muted);
  --line: var(--hh-border);
  --surface: var(--hh-white);
  --soft: var(--hh-bg);
  --brand: var(--hh-green-dark);
  --brand-dark: var(--hh-blue-dark);
  --accent: var(--hh-green);
  --accent-soft: #efffdb;
}

body {
  background: var(--hh-bg);
  color: var(--hh-text);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
}

h1,
h2 {
  color: var(--hh-blue-dark);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

h3,
h4,
h5,
h6 {
  color: var(--hh-blue-dark);
  font-weight: 700;
  letter-spacing: 0;
}

.container {
  width: min(1180px, 92%);
}

.site-header {
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(7, 66, 89, 0.08);
  backdrop-filter: blur(14px);
}

.top-bar {
  background: linear-gradient(90deg, var(--hh-green-dark), var(--hh-blue-dark));
  color: #fff;
  font-size: 14px;
}

.top-bar-inner {
  min-height: 44px;
  gap: 18px;
}

.top-left,
.top-right {
  gap: 18px;
}

.top-left span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 500;
}

.top-left i {
  color: var(--hh-leaf);
}

.top-bar a {
  color: #fff;
  font-weight: 600;
}

.nav {
  min-height: 92px;
  gap: 24px;
}

.brand {
  flex-shrink: 0;
  color: var(--hh-blue-dark);
  font-size: 20px;
  font-weight: 800;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
  box-shadow: 0 14px 28px rgba(8, 120, 66, 0.22);
}

.brand-logo {
  height: 72px;
  max-width: 190px;
}

.menu-toggle {
  display: none;
}

.menu-btn {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--hh-border);
  border-radius: 12px;
  background: var(--hh-bg);
  cursor: pointer;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  border-radius: 20px;
  background: var(--hh-blue-dark);
}

.nav-links {
  flex: 1;
  justify-content: center;
  gap: 26px;
}

.nav-links > a,
.category-menu > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 34px 0;
  border-radius: 0;
  color: var(--hh-blue-dark);
  font-size: 15px;
  font-weight: 600;
}

.nav-links > a::after,
.category-menu > summary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 27px;
  width: 0;
  height: 3px;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--hh-green), var(--hh-blue));
  transition: 0.25s ease;
}

.nav-links > a:hover,
.category-menu > summary:hover {
  background: transparent;
  color: var(--hh-green-dark);
}

.nav-links > a:hover::after,
.category-menu > summary:hover::after {
  width: 100%;
}

.category-menu {
  position: relative;
}

.category-dropdown {
  top: 76px;
  min-width: 285px;
  padding: 12px;
  border: 1px solid var(--hh-border);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(7, 66, 89, 0.18);
}

.nested-menu {
  padding: 2px 0;
}

.nested-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--hh-blue-dark);
  font-size: 14px;
  font-weight: 600;
}

.nested-menu summary:hover,
.nested-menu[open] summary {
  background: var(--hh-bg);
}

.nested-menu a {
  display: block;
  margin: 4px 0 4px 14px;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--hh-muted);
  font-size: 13px;
}

.nested-menu a:hover {
  background: #effff1;
  color: var(--hh-green-dark);
}

.social-links {
  gap: 9px;
}

.social-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.social-icon:hover {
  background: var(--hh-leaf);
  color: var(--hh-blue-dark);
  transform: translateY(-2px);
}

.account-menu {
  position: relative;
  z-index: 60;
}

.account-menu summary {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.account-menu summary i:first-child,
.account-menu .account-arrow {
  color: var(--hh-leaf);
}

.account-menu summary:hover {
  background: var(--hh-leaf);
  color: var(--hh-blue-dark);
}

.account-menu summary:hover i {
  color: var(--hh-blue-dark);
}

.account-popover {
  top: 43px;
  right: 0;
  min-width: 235px;
  padding: 10px;
  border: 1px solid var(--hh-border);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(7, 66, 89, 0.22);
}

.account-popover::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 24px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid var(--hh-border);
  border-left: 1px solid var(--hh-border);
  transform: rotate(45deg);
}

.account-popover a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  color: var(--hh-blue-dark);
}

.account-popover a > i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
  color: #fff;
  font-size: 15px;
}

.account-popover strong {
  display: block;
  color: var(--hh-blue-dark);
  font-size: 14px;
  line-height: 1.2;
}

.account-popover small {
  display: block;
  margin-top: 2px;
  color: var(--hh-muted);
  font-size: 11px;
}

.account-popover a:hover {
  background: var(--hh-bg);
}

.nav-actions {
  gap: 12px;
  flex-shrink: 0;
}

.icon-box {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
  color: #fff;
  box-shadow: 0 12px 25px rgba(8, 120, 66, 0.22);
}

.icon-box + .icon-box {
  background: linear-gradient(135deg, var(--hh-blue-dark), var(--hh-green-dark));
}

.icon-box:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(7, 109, 145, 0.26);
}

.count-badge {
  top: -7px;
  right: -6px;
  min-width: 21px;
  height: 21px;
  border: 2px solid #fff;
  background: var(--hh-leaf);
  color: var(--hh-blue-dark);
  font-weight: 800;
}

.page {
  padding: 30px 0 60px;
}

.home-slider-full {
  position: relative;
  min-height: 640px;
  margin-top: -30px;
  overflow: hidden;
  background: var(--hh-blue-dark);
}

.home-slider-full .hero-slider {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 0 max(34px, calc((100vw - 1180px) / 2 + 34px));
  border: 0;
  border-radius: 0;
  background: var(--hh-blue-dark);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity 0.75s ease, transform 1s ease, visibility 0.75s ease;
}

.home-slider-full .hero-slider.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.home-slider-full .hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(4, 59, 50, 0.9) 0%, rgba(7, 66, 89, 0.78) 48%, rgba(7, 109, 145, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  color: #fff;
}

.home-slider-full .hero-slider h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.08;
}

.home-slider-full .hero-slider p {
  max-width: 640px;
  margin: 0 0 34px;
  color: #effff4;
  font-size: 18px;
}

.home-slider-full .hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  display: block;
}

.home-slider-full .hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hh-blue-dark);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  transform: translateY(-50%);
  transition: 0.25s ease;
}

.hero-arrow:hover {
  background: var(--hh-leaf);
}

.hero-prev {
  left: 30px;
}

.hero-next {
  right: 30px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.66);
  transition: 0.25s ease;
}

.hero-dots button.active {
  width: 34px;
  background: var(--hh-leaf);
}

.section-head {
  margin: 62px 0 24px;
  align-items: center;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
}

.grid {
  gap: 28px;
}

.card {
  border: 1px solid var(--hh-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 35px rgba(7, 66, 89, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  border-color: rgba(8, 163, 16, 0.35);
  box-shadow: var(--hh-shadow);
  transform: translateY(-6px);
}

.product-card,
.content-card {
  overflow: hidden;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-bottom: 0;
  background: #eaf7f0;
  overflow: hidden;
}

.product-image img,
.content-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image img,
.content-card:hover > img {
  transform: scale(1.06);
}

.product-body,
.content-card {
  padding: 24px;
}

.content-card > img {
  height: 230px;
  margin: -24px -24px 20px;
  width: calc(100% + 48px);
}

.product-title {
  min-height: 0;
  font-size: 20px;
  line-height: 1.32;
}

.product-title a:hover,
.content-card a:hover,
.category-card:hover h3 {
  color: var(--hh-green-dark);
}

.category-card {
  padding: 30px 26px;
  background: #fff;
}

.category-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 20px;
  background: #eaf7f0;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.06);
}

.image-category-card {
  overflow: hidden;
}

.browse-strip {
  margin-bottom: 30px;
}

.compact-head {
  margin: 30px 0 16px;
}

.category-card h3 {
  font-size: 22px;
}

.price {
  color: var(--hh-green-dark);
  font-size: 18px;
  font-weight: 800;
}

.rating {
  color: #ffb703;
}

.btn {
  min-height: 48px;
  padding: 13px 26px;
  border: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(8, 120, 66, 0.2);
}

.btn:hover {
  background: linear-gradient(135deg, var(--hh-blue), var(--hh-green));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(7, 109, 145, 0.28);
}

.btn.secondary {
  border: 1px solid var(--hh-border);
  background: #fff;
  color: var(--hh-green-dark);
  box-shadow: none;
}

.btn.secondary:hover {
  border-color: var(--hh-green);
  background: #fff;
  color: var(--hh-blue-dark);
  box-shadow: var(--hh-shadow);
}

.pill {
  min-height: 31px;
  padding: 6px 13px;
  border-radius: 30px;
  background: rgba(169, 234, 92, 0.22);
  color: var(--hh-green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.filters,
.summary-panel,
.side-nav,
.table-wrap,
.cms-content {
  border-color: var(--hh-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(7, 66, 89, 0.06);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  border-color: var(--hh-border);
  border-radius: 16px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(8, 163, 16, 0.16);
  border-color: var(--hh-green);
}

.footer {
  padding: 62px 0 0;
  border-top: 0;
  background: linear-gradient(135deg, var(--hh-blue-dark), var(--hh-green-dark));
  color: #e7fff0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr 1fr;
  gap: 34px;
}

.footer h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 20px;
}

.footer p {
  margin: 0 0 12px;
  color: #e7fff0;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: #e7fff0;
  font-size: 14px;
}

.footer a:hover {
  color: var(--hh-leaf);
  transform: translateX(4px);
}

.footer i {
  color: var(--hh-leaf);
  margin-right: 8px;
}

.footer-bottom {
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #d9ffe4;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav {
    flex-wrap: wrap;
    min-height: auto;
    padding: 14px 0;
  }

  .brand-logo {
    height: 58px;
  }

  .menu-btn {
    display: flex;
    margin-left: auto;
  }

  .nav-actions {
    order: 3;
    margin-left: 0;
  }

  .nav-links {
    order: 4;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--hh-border);
    border-radius: 18px;
    background: #fff;
  }

  .menu-toggle:checked ~ .nav-links {
    display: grid;
  }

  .nav-links > a,
  .category-menu > summary {
    width: 100%;
    padding: 11px 12px;
    border-radius: 12px;
  }

  .nav-links > a::after,
  .category-menu > summary::after {
    display: none;
  }

  .category-dropdown {
    position: static;
    min-width: 100%;
    max-height: none;
    margin-top: 8px;
    box-shadow: none;
  }

  .grid-4,
  .grid-3,
  .filters,
  .metric-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    align-items: flex-start;
    padding: 9px 0;
  }

  .social-links {
    display: none;
  }

  .home-slider-full,
  .home-slider-full .hero-slider {
    min-height: 560px;
  }

  .home-slider-full .hero-slider {
    justify-content: center;
    padding: 0 18px;
    text-align: center;
  }

  .hero-content {
    margin: auto;
  }

  .home-slider-full .hero-slider h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .home-slider-full .hero-slider p {
    font-size: 16px;
  }

  .hero-prev {
    left: 14px;
  }

  .hero-next {
    right: 14px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .top-left {
    gap: 9px;
  }

  .top-right {
    margin-left: auto;
  }

  .brand span {
    font-size: 17px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .home-slider-full,
  .home-slider-full .hero-slider {
    min-height: 520px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 22px;
  }

  .home-slider-full .hero-slider .btn {
    width: 100%;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .filters,
  .metric-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-body,
  .content-card {
    padding: 22px;
  }

  .content-card > img {
    margin: -22px -22px 18px;
    width: calc(100% + 44px);
  }

  .footer {
    padding-top: 46px;
  }
}

@media (max-width: 390px) {
  .home-slider-full,
  .home-slider-full .hero-slider {
    min-height: 500px;
  }
}

/* About, contact, and detail page sections */
.hh-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.hh-btn-primary,
.hh-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 30px;
  border: 0;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  transition: 0.25s ease;
}

.hh-btn-primary {
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
  color: #fff;
  box-shadow: 0 15px 30px rgba(8, 120, 66, 0.25);
}

.hh-btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(7, 109, 145, 0.28);
}

.hh-btn-white {
  background: #fff;
  color: var(--hh-green-dark);
}

.hh-btn-white:hover {
  color: var(--hh-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(255, 255, 255, 0.22);
}

.hh-page-banner {
  position: relative;
  padding: 116px 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(4, 59, 50, 0.94), rgba(7, 66, 89, 0.84)), url("images/slider-main.svg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hh-contact-banner {
  background: linear-gradient(90deg, rgba(4, 59, 50, 0.94), rgba(7, 66, 89, 0.84)), url("images/news-launch.svg");
  background-size: cover;
  background-position: center;
}

.hh-page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hh-page-banner-content > span,
.hh-contact-mini-title,
.hh-about-mini-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--hh-green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hh-page-banner-content > span {
  margin-bottom: 18px;
  padding: 9px 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(10px);
}

.hh-page-banner-content > span i,
.hh-breadcrumb a {
  color: var(--hh-leaf);
}

.hh-page-banner-content h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.1;
}

.hh-page-banner-content p {
  max-width: 650px;
  margin: 0 0 24px;
  color: #effff4;
  font-size: 17px;
}

.hh-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.hh-breadcrumb strong,
.hh-breadcrumb i {
  color: #fff;
}

.hh-section-title {
  max-width: 940px;
  margin: 0 auto 50px;
  text-align: center;
}

.hh-section-title > span {
  color: var(--hh-green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hh-section-title h2 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
}

.hh-section-title p {
  color: var(--hh-muted);
}

.hh-contact-info-section {
  padding: 80px 0 40px;
  background: #fff;
}

.hh-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hh-contact-info-card {
  padding: 34px 28px;
  border: 1px solid var(--hh-border);
  border-radius: 28px;
  background: var(--hh-bg);
  text-align: center;
  box-shadow: 0 14px 35px rgba(7, 66, 89, 0.08);
  transition: 0.3s ease;
}

.hh-contact-info-card:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: var(--hh-shadow);
}

.hh-contact-info-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
  color: #fff;
  font-size: 28px;
}

.hh-contact-info-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.hh-contact-info-card p {
  margin-bottom: 10px;
  color: var(--hh-muted);
  font-size: 14px;
}

.hh-contact-info-card a {
  color: var(--hh-green-dark);
  font-weight: 800;
}

.hh-contact-main-section {
  padding: 60px 0 95px;
  background: #fff;
}

.hh-contact-main-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

.hh-contact-form-box,
.hh-contact-map-box {
  border: 1px solid var(--hh-border);
  border-radius: 32px;
  background: var(--hh-bg);
  box-shadow: 0 14px 35px rgba(7, 66, 89, 0.08);
}

.hh-contact-form-box {
  padding: 34px;
}

.hh-contact-mini-title {
  margin-bottom: 12px;
}

.hh-contact-form-box h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
}

.hh-contact-cms {
  margin-bottom: 24px;
  color: var(--hh-muted);
}

.hh-contact-form {
  display: grid;
  gap: 0;
}

.hh-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hh-form-group {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.hh-form-group label {
  color: var(--hh-blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.hh-form-control {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid var(--hh-border);
  border-radius: 16px;
  background: #fff;
  color: var(--hh-text);
}

textarea.hh-form-control {
  min-height: 130px;
}

.hh-contact-submit {
  justify-self: start;
  margin-top: 4px;
}

.hh-contact-map-box {
  overflow: hidden;
  background: #fff;
}

.hh-map-wrapper {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.hh-map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.hh-contact-address-box {
  padding: 30px;
}

.hh-contact-address-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 24px;
}

.hh-contact-address-box ul {
  margin-bottom: 24px;
}

.hh-contact-address-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--hh-muted);
}

.hh-contact-address-box li i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
  color: #fff;
  font-size: 13px;
}

.hh-contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hh-contact-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hh-border);
  border-radius: 50%;
  background: var(--hh-bg);
  color: var(--hh-green-dark);
}

.hh-contact-social a:hover {
  background: var(--hh-leaf);
  color: var(--hh-blue-dark);
  transform: translateY(-3px);
}

.hh-contact-cta,
.hh-about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--hh-green-dark), var(--hh-blue-dark));
  color: #fff;
  text-align: center;
}

.hh-contact-cta h2,
.hh-about-cta h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
}

.hh-contact-cta p,
.hh-about-cta p {
  margin-bottom: 28px;
  color: #e7fff0;
}

.hh-about-page-section,
.hh-about-why-section {
  padding: 95px 0;
  background: #fff;
}

.hh-about-page-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.hh-about-page-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
  box-shadow: var(--hh-shadow);
}

.hh-about-page-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  padding: 34px;
}

.hh-about-exp-box {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 170px;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 66, 89, 0.22);
}

.hh-about-exp-box strong {
  color: var(--hh-green-dark);
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}

.hh-about-exp-box span {
  margin-top: 8px;
  color: var(--hh-blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.hh-about-mini-title {
  margin-bottom: 14px;
}

.hh-about-page-content h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.18;
}

.hh-about-cms {
  color: var(--hh-muted);
}

.hh-about-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 32px;
}

.hh-about-check-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hh-blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.hh-about-check-list i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
  color: #fff;
  font-size: 11px;
}

.hh-mvv-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f4fff7, #eef9ff);
}

.hh-mvv-grid,
.hh-about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hh-about-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.hh-mvv-card,
.hh-about-why-card {
  padding: 34px 28px;
  border: 1px solid var(--hh-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(7, 66, 89, 0.08);
  transition: 0.3s ease;
}

.hh-about-why-card {
  background: var(--hh-bg);
  text-align: center;
}

.hh-mvv-card:hover,
.hh-about-why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hh-shadow);
}

.hh-mvv-icon,
.hh-about-why-card > i {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
  color: #fff;
  font-size: 28px;
}

.hh-about-why-card > i {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--hh-leaf), var(--hh-aqua));
  color: var(--hh-blue-dark);
}

.hh-mvv-card h3,
.hh-about-why-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hh-mvv-card p,
.hh-about-why-card p {
  margin: 0;
  color: var(--hh-muted);
  font-size: 14px;
}

.hh-about-stats-section {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(8, 120, 66, 0.96), rgba(7, 66, 89, 0.96));
}

.hh-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.hh-stat-box {
  padding: 32px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.13);
  text-align: center;
  backdrop-filter: blur(10px);
}

.hh-stat-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--hh-leaf);
  font-size: 44px;
  line-height: 1;
}

.hh-stat-box span {
  color: #fff;
  font-weight: 700;
}

.detail-sidebar-grid {
  align-items: flex-start;
}

.detail-article > img {
  height: 380px;
}

.detail-article .cms-content {
  color: var(--hh-muted);
  font-size: 16px;
}

.hh-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hh-blog-meta span {
  color: var(--hh-muted);
  font-size: 13px;
  font-weight: 600;
}

.hh-blog-meta i {
  margin-right: 5px;
  color: var(--hh-green-dark);
}

.hh-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: sticky;
  top: 118px;
}

.hh-sidebar-box {
  padding: 26px;
  border: 1px solid var(--hh-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(7, 66, 89, 0.08);
}

.hh-sidebar-box h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-size: 22px;
}

.hh-sidebar-box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
}

.hh-category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hh-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--hh-border);
  border-radius: 16px;
  background: var(--hh-bg);
  color: var(--hh-blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.hh-category-list a:hover {
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 10px 24px rgba(7, 66, 89, 0.08);
}

.hh-category-list span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hh-category-list i {
  color: var(--hh-green-dark);
}

.hh-category-list b {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hh-green), var(--hh-blue));
  color: #fff;
  font-size: 12px;
}

.hh-sidebar-product-list {
  display: grid;
  gap: 16px;
}

.hh-sidebar-product {
  display: flex;
  align-items: center;
  gap: 13px;
}

.hh-sidebar-product img {
  width: 86px;
  height: 76px;
  flex: 0 0 86px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--hh-bg);
}

.hh-sidebar-product strong {
  display: block;
  color: var(--hh-blue-dark);
  font-size: 14px;
  line-height: 1.35;
}

.hh-sidebar-product small {
  display: block;
  margin-top: 5px;
  color: var(--hh-green-dark);
  font-size: 12px;
  font-weight: 800;
}

.hh-sidebar-product:hover strong {
  color: var(--hh-green-dark);
}

@media (min-width: 921px) {
  .category-menu > summary,
  .nested-menu > summary,
  .admin-menu-group > summary {
    cursor: default;
  }
}

@media (max-width: 1024px) {
  .hh-about-page-grid,
  .hh-contact-main-grid {
    grid-template-columns: 1fr;
  }

  .hh-mvv-grid,
  .hh-contact-info-grid,
  .hh-about-why-grid,
  .hh-about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hh-blog-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .hh-page-banner {
    padding: 85px 0;
    text-align: center;
  }

  .hh-page-banner-content {
    margin: auto;
  }

  .hh-breadcrumb {
    justify-content: center;
  }

  .hh-contact-info-section,
  .hh-about-page-section,
  .hh-mvv-section,
  .hh-about-why-section {
    padding: 70px 0;
  }

  .hh-contact-main-section {
    padding: 45px 0 70px;
  }

  .hh-contact-row,
  .hh-mvv-grid,
  .hh-contact-info-grid,
  .hh-about-why-grid,
  .hh-about-stats-grid {
    grid-template-columns: 1fr;
  }

  .hh-contact-form-box {
    padding: 26px 22px;
  }

  .hh-map-wrapper {
    height: 300px;
  }

  .hh-about-page-image,
  .hh-about-page-image img {
    min-height: 360px;
  }

  .hh-about-check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hh-page-banner {
    padding: 70px 0;
  }

  .hh-page-banner-content h1 {
    font-size: 38px;
  }

  .hh-contact-info-card,
  .hh-sidebar-box,
  .hh-mvv-card,
  .hh-about-why-card {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .hh-contact-submit {
    width: 100%;
  }

  .hh-about-page-image,
  .hh-about-page-image img {
    min-height: 300px;
    border-radius: 24px;
  }

  .hh-about-exp-box {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 40px);
    min-height: auto;
    margin: -50px auto 20px;
  }

  .detail-article > img {
    height: 240px;
  }
}

/* Final compact admin override */
.admin-layout {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 16px;
}

.admin-nav.card {
  padding: 8px;
  border-color: #e4e7ec;
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.05);
}

.admin-nav.card:hover {
  transform: none;
}

.admin-menu-group summary,
.admin-nav a {
  min-height: 32px;
  padding: 7px 8px;
  border-radius: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}

.admin-menu-group summary {
  color: #0f172a;
  background: #eef2f6;
}

.admin-nav a:hover,
.admin-menu-group summary:hover {
  background: #e7f5f2;
  color: var(--hh-green-dark);
}

.admin-main .card,
.admin-main .content-card,
.admin-main .metric,
.admin-main .category-card,
.admin-main .filters,
.admin-main .table-wrap {
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
}

.admin-main .card:hover,
.admin-main .content-card:hover,
.admin-main .metric:hover,
.admin-main .category-card:hover {
  transform: none;
}

.admin-main .content-card,
.admin-main .metric,
.admin-main .category-card {
  padding: 12px;
}

.admin-main .field {
  gap: 4px;
  margin-bottom: 10px;
}

.admin-main .field label,
.admin-main .data-table th,
.admin-main .btn,
.admin-main .pill {
  font-weight: 500;
}

.admin-main input[type="text"],
.admin-main input[type="email"],
.admin-main input[type="password"],
.admin-main input[type="number"],
.admin-main select,
.admin-main textarea {
  min-height: 36px;
  padding: 7px 9px;
  border-radius: 8px;
}

.admin-main textarea {
  min-height: 86px;
}

.admin-main .data-table th,
.admin-main .data-table td {
  padding: 8px 10px;
}

.admin-main .btn {
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  box-shadow: none;
}

/* Full-width compact admin workspace */
.admin-body {
  background: #f6f8fb;
  font-size: 13px;
  line-height: 1.4;
}

.admin-body .site-header {
  position: sticky;
  top: 0;
}

.admin-body .container {
  width: calc(100% - 16px);
  max-width: none;
}

.admin-body .nav {
  min-height: 58px;
  padding: 6px 0;
}

.admin-body .brand {
  font-size: 16px;
}

.admin-body .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.admin-body .page {
  padding: 8px 0 14px;
}

.admin-body .section-head {
  margin: 8px 0 8px;
}

.admin-body .section-head h1 {
  font-size: 21px;
}

.admin-body .section-head h2 {
  font-size: 16px;
}

.admin-body .muted {
  font-size: 12px;
}

.admin-body .admin-layout {
  width: calc(100% - 16px);
  max-width: none;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 8px;
  margin: 0 auto;
}

.admin-body .admin-nav.card {
  top: 70px;
  padding: 5px;
  border-radius: 6px;
}

.admin-body .admin-menu-group {
  margin-bottom: 3px;
}

.admin-body .admin-menu-group summary,
.admin-body .admin-nav a {
  min-height: 27px;
  padding: 5px 6px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

.admin-body .admin-icon {
  width: 13px;
  height: 13px;
  flex-basis: 13px;
  border-radius: 4px;
}

.admin-body .admin-icon::before {
  width: 5px;
  height: 5px;
}

.admin-body .admin-main {
  font-size: 13px;
}

.admin-body .admin-main .card,
.admin-body .admin-main .content-card,
.admin-body .admin-main .filters,
.admin-body .admin-main .table-wrap {
  border-radius: 6px;
}

.admin-body .admin-main .content-card,
.admin-body .admin-main .metric,
.admin-body .admin-main .category-card {
  padding: 8px;
}

.admin-body .admin-main .field {
  gap: 3px;
  margin-bottom: 6px;
}

.admin-body .admin-main .field label {
  font-size: 12px;
}

.admin-body .admin-main input[type="text"],
.admin-body .admin-main input[type="email"],
.admin-body .admin-main input[type="password"],
.admin-body .admin-main input[type="number"],
.admin-body .admin-main input[type="date"],
.admin-body .admin-main input[type="datetime-local"],
.admin-body .admin-main input[type="file"],
.admin-body .admin-main select,
.admin-body .admin-main textarea {
  min-height: 30px;
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 12px;
}

.admin-body .admin-main textarea {
  min-height: 68px;
}

.admin-body .admin-main .btn {
  min-height: 29px;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.admin-body .admin-main .btn-row {
  gap: 5px;
}

.admin-body .admin-main .data-table {
  min-width: 960px;
}

.admin-body .admin-main .data-table th,
.admin-body .admin-main .data-table td {
  padding: 5px 7px;
  font-size: 12px;
}

.admin-body .upload-preview {
  gap: 6px;
  margin-bottom: 5px;
  padding: 5px;
  border-radius: 6px;
}

.admin-body .upload-preview img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
}

.admin-body .editor-top-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  padding: 7px 8px;
  border: 1px solid #dbe5f0;
  border-radius: 6px;
  background: #f8fafc;
}

.admin-body .editor-top-actions strong {
  display: block;
  color: #0f172a;
  font-size: 12px;
  font-weight: 500;
}

.admin-body .editor-top-actions span {
  display: block;
  color: #64748b;
  font-size: 11px;
}

@media (max-width: 920px) {
  .admin-body .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-body .admin-nav.card {
    position: static;
  }

  .admin-body .editor-top-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Modern compact storefront override */
body:not(.admin-body) {
  background: #f8fafc;
  color: #1f2937;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

body:not(.admin-body) h1,
body:not(.admin-body) h2,
body:not(.admin-body) h3,
body:not(.admin-body) h4,
body:not(.admin-body) h5,
body:not(.admin-body) h6 {
  color: #0f172a;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

body:not(.admin-body) .container,
body:not(.admin-body) .hh-container {
  width: min(1160px, calc(100% - 28px));
}

body:not(.admin-body) .top-bar {
  background: #0f3d3e;
  font-size: 12px;
}

body:not(.admin-body) .top-bar-inner {
  min-height: 34px;
  gap: 12px;
}

body:not(.admin-body) .top-left,
body:not(.admin-body) .top-right {
  gap: 10px;
}

body:not(.admin-body) .top-left span,
body:not(.admin-body) .top-bar a,
body:not(.admin-body) .account-menu summary,
body:not(.admin-body) .nav-links > a,
body:not(.admin-body) .category-menu > summary,
body:not(.admin-body) .nested-menu summary,
body:not(.admin-body) .field label,
body:not(.admin-body) .btn,
body:not(.admin-body) .pill {
  font-weight: 500;
}

body:not(.admin-body) .site-header {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

body:not(.admin-body) .nav {
  min-height: 66px;
  gap: 14px;
}

body:not(.admin-body) .brand {
  font-size: 17px;
  font-weight: 600;
}

body:not(.admin-body) .brand-logo {
  height: 50px;
  max-width: 170px;
}

body:not(.admin-body) .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(8, 120, 66, 0.14);
}

body:not(.admin-body) .nav-links {
  gap: 18px;
}

body:not(.admin-body) .nav-links > a,
body:not(.admin-body) .category-menu > summary {
  padding: 23px 0;
  font-size: 13px;
}

body:not(.admin-body) .nav-links > a::after,
body:not(.admin-body) .category-menu > summary::after {
  bottom: 18px;
  height: 2px;
}

body:not(.admin-body) .category-dropdown,
body:not(.admin-body) .account-popover {
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

body:not(.admin-body) .category-dropdown {
  top: 58px;
  padding: 8px;
}

body:not(.admin-body) .nested-menu summary,
body:not(.admin-body) .nested-menu a {
  padding: 8px 10px;
  font-size: 12px;
}

body:not(.admin-body) .icon-box {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(8, 120, 66, 0.14);
}

body:not(.admin-body) .icon-box svg {
  width: 19px;
  height: 19px;
}

body:not(.admin-body) .page {
  padding: 18px 0 38px;
}

body:not(.admin-body) .home-slider-full {
  min-height: 500px;
  margin-top: -18px;
}

body:not(.admin-body) .home-slider-full .hero-slider {
  min-height: 500px;
  padding-left: max(22px, calc((100vw - 1160px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1160px) / 2 + 22px));
}

body:not(.admin-body) .home-slider-full .hero-slider h1 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 600;
}

body:not(.admin-body) .home-slider-full .hero-slider p {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: 15px;
}

body:not(.admin-body) .section-head {
  margin: 28px 0 14px;
  gap: 10px;
}

body:not(.admin-body) .compact-head {
  margin: 22px 0 12px;
}

body:not(.admin-body) .section-head h1 {
  font-size: 30px;
}

body:not(.admin-body) .section-head h2,
body:not(.admin-body) .hh-section-title h2 {
  font-size: clamp(24px, 3vw, 34px);
}

body:not(.admin-body) .muted,
body:not(.admin-body) .cms-content,
body:not(.admin-body) .product-body,
body:not(.admin-body) .content-card,
body:not(.admin-body) .category-card {
  font-size: 13px;
}

body:not(.admin-body) .grid {
  gap: 16px;
}

body:not(.admin-body) .card,
body:not(.admin-body) .content-card,
body:not(.admin-body) .category-card,
body:not(.admin-body) .product-card,
body:not(.admin-body) .filters,
body:not(.admin-body) .summary-panel,
body:not(.admin-body) .table-wrap,
body:not(.admin-body) .hh-sidebar-box,
body:not(.admin-body) .hh-contact-info-card,
body:not(.admin-body) .hh-mvv-card,
body:not(.admin-body) .hh-about-why-card {
  border-color: #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

body:not(.admin-body) .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

body:not(.admin-body) .product-body,
body:not(.admin-body) .category-card,
body:not(.admin-body) .content-card,
body:not(.admin-body) .summary-panel {
  padding: 16px;
}

body:not(.admin-body) .content-card > img {
  height: 190px;
  margin: -16px -16px 14px;
  width: calc(100% + 32px);
}

body:not(.admin-body) .product-image,
body:not(.admin-body) .category-image,
body:not(.admin-body) .main-product-image,
body:not(.admin-body) .thumbnail-row img {
  border-radius: 12px;
  background: #eef7f3;
}

body:not(.admin-body) .category-image {
  margin-bottom: 12px;
}

body:not(.admin-body) .product-title {
  min-height: 0;
  margin-bottom: 6px;
  font-size: 16px;
}

body:not(.admin-body) .category-card h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

body:not(.admin-body) .price {
  margin: 8px 0 12px;
  font-size: 15px;
  font-weight: 600;
}

body:not(.admin-body) .btn {
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

body:not(.admin-body) .pill {
  min-height: 24px;
  padding: 4px 9px;
  font-size: 11px;
  letter-spacing: 0;
}

body:not(.admin-body) .filters {
  gap: 10px;
  padding: 12px;
  margin-bottom: 16px;
}

body:not(.admin-body) .field {
  gap: 4px;
  margin-bottom: 10px;
}

body:not(.admin-body) .field label {
  font-size: 12px;
}

body:not(.admin-body) input[type="text"],
body:not(.admin-body) input[type="email"],
body:not(.admin-body) input[type="password"],
body:not(.admin-body) input[type="number"],
body:not(.admin-body) select,
body:not(.admin-body) textarea {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
}

body:not(.admin-body) .taxonomy-hero {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0 0 18px;
  padding: 16px;
  overflow: hidden;
}

body:not(.admin-body) .taxonomy-hero-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: #eef7f3;
}

body:not(.admin-body) .taxonomy-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:not(.admin-body) .taxonomy-hero-content h2 {
  margin: 8px 0;
  font-size: clamp(24px, 3vw, 36px);
}

body:not(.admin-body) .taxonomy-hero-content p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.line-clamp-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body:not(.admin-body) .footer {
  padding: 36px 0 0;
}

body:not(.admin-body) .footer-grid {
  gap: 22px;
}

body:not(.admin-body) .footer h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

body:not(.admin-body) .footer a,
body:not(.admin-body) .footer p {
  margin-bottom: 7px;
  font-size: 12px;
}

body:not(.admin-body) .footer-bottom {
  margin-top: 24px;
  padding: 12px 0;
  font-size: 12px;
}

@media (max-width: 920px) {
  body:not(.admin-body) .taxonomy-hero {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .nav {
    padding: 10px 0;
  }

  body:not(.admin-body) .nav-links {
    gap: 4px;
  }
}

@media (max-width: 620px) {
  body:not(.admin-body) {
    font-size: 13px;
  }

  body:not(.admin-body) .container,
  body:not(.admin-body) .hh-container {
    width: calc(100% - 22px);
  }

  body:not(.admin-body) .home-slider-full,
  body:not(.admin-body) .home-slider-full .hero-slider {
    min-height: 440px;
  }

  body:not(.admin-body) .home-slider-full .hero-slider {
    padding: 0 16px;
  }

  body:not(.admin-body) .product-body,
  body:not(.admin-body) .category-card,
  body:not(.admin-body) .content-card,
  body:not(.admin-body) .summary-panel,
  body:not(.admin-body) .taxonomy-hero {
    padding: 14px;
  }

  body:not(.admin-body) .content-card > img {
    margin: -14px -14px 12px;
    width: calc(100% + 28px);
  }
}

/* Full-width modern theme refresh */
:root {
  --ink: #172033;
  --muted: #657085;
  --line: #dfe7f1;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --brand: #087842;
  --brand-dark: #07516b;
  --accent: #0ea5e9;
  --accent-soft: #e8f6fd;
  --success: #078b55;
  --danger: #d23b3b;
  --shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 8px 22px rgba(15, 23, 42, 0.055);
}

body {
  background: #f6f9fc;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.container,
.hh-container {
  width: calc(100% - 28px);
  max-width: none;
}

.site-header {
  border-bottom: 1px solid rgba(223, 231, 241, 0.92);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.top-bar {
  background: linear-gradient(90deg, #063f54, #087842);
  color: #f8fbff;
  font-size: 12px;
}

.top-bar-inner {
  min-height: 32px;
  gap: 12px;
}

.top-left,
.top-right {
  gap: 10px;
}

.top-bar a,
.account-menu summary,
.nav-links > a,
.category-menu > summary,
.nested-menu summary,
.btn,
.pill,
.field label {
  font-weight: 500;
}

.nav {
  min-height: 64px;
  gap: 16px;
}

.brand {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-logo {
  height: 48px;
  max-width: 180px;
}

.nav-links {
  gap: 14px;
}

.nav-links > a,
.category-menu > summary {
  padding: 20px 0;
  color: #26364d;
  font-size: 13px;
}

.nav-links > a:hover,
.category-menu > summary:hover {
  color: var(--brand);
  background: transparent;
}

.category-dropdown,
.account-popover {
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.category-dropdown {
  top: 56px;
  padding: 8px;
}

.nested-menu summary,
.nested-menu a,
.account-popover a {
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
}

.icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.icon-box:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-color: transparent;
}

.page {
  padding: 16px 0 34px;
}

.home-slider-full {
  margin-top: -16px;
  min-height: 520px;
}

.home-slider-full .hero-slider,
.hero-slider {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

.home-slider-full .hero-slider {
  min-height: 520px;
  padding-left: 24px;
  padding-right: 24px;
}

.section-head {
  margin: 26px 0 12px;
}

.section-head h1 {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 600;
}

.section-head h2,
.hh-section-title h2 {
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 600;
}

.card,
.content-card,
.category-card,
.product-card,
.summary-panel,
.filters,
.table-wrap,
.hh-sidebar-box,
.hh-contact-info-card,
.hh-mvv-card,
.hh-about-why-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card:hover,
.product-card:hover,
.category-card:hover,
.content-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
}

.product-body,
.category-card,
.content-card,
.summary-panel,
.filters {
  padding: 14px;
}

.grid {
  gap: 14px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-title,
.category-card h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.muted,
.product-body,
.category-card,
.content-card,
.cms-content {
  color: #667085;
  font-size: 13px;
}

.price {
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
}

.btn {
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border: 0;
  box-shadow: 0 8px 18px rgba(8, 120, 66, 0.16);
  font-size: 13px;
}

.btn.secondary {
  background: #ffffff;
  color: #24324a;
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn:hover {
  filter: brightness(0.96);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
input[type="file"],
select,
textarea {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 8px;
  border-color: #ced8e6;
  font-size: 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.14);
  outline: 0;
}

.product-image,
.category-image,
.main-product-image,
.thumbnail-row img,
.taxonomy-hero-image {
  border-radius: 10px;
  background: #eef7f3;
}

.footer {
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-bottom {
  margin-top: 22px;
  padding: 12px 0;
  font-size: 12px;
}

.admin-body {
  background: #f4f7fb;
  color: #1f2a3d;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

.admin-body .container {
  width: calc(100% - 16px);
  max-width: none;
}

.admin-body .site-header {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.admin-body .nav {
  min-height: 52px;
  padding: 5px 0;
}

.admin-body .brand {
  font-size: 15px;
  font-weight: 500;
}

.admin-body .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.admin-body .nav-links a {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
}

.admin-body .page {
  padding: 8px 0 12px;
}

.admin-body .admin-layout {
  width: calc(100% - 16px);
  max-width: none;
  grid-template-columns: 218px minmax(0, 1fr);
  gap: 8px;
  margin: 0 auto;
}

.admin-body .admin-nav.card {
  position: sticky;
  top: 64px;
  max-height: calc(100vh - 76px);
  overflow: auto;
  padding: 5px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.admin-body .admin-menu-group {
  margin-bottom: 3px;
}

.admin-body .admin-menu-group summary,
.admin-body .admin-nav a {
  min-height: 28px;
  padding: 5px 7px;
  border-radius: 7px;
  color: #344054;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.admin-body .admin-menu-group summary {
  background: #eef4f8;
  color: #172033;
}

.admin-body .admin-menu-group[open] summary {
  color: var(--brand-dark);
}

.admin-body .admin-nav a:hover,
.admin-body .admin-menu-group summary:hover {
  background: #e8f6fd;
  color: var(--brand);
}

.admin-body .admin-icon {
  width: 13px;
  height: 13px;
  flex-basis: 13px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(8, 120, 66, 0.16), rgba(14, 165, 233, 0.18));
}

.admin-body .admin-main {
  min-width: 0;
  font-size: 12px;
}

.admin-body .section-head {
  margin: 6px 0 8px;
}

.admin-body .section-head h1 {
  font-size: 20px;
  font-weight: 600;
}

.admin-body .section-head h2 {
  font-size: 15px;
  font-weight: 600;
}

.admin-body .admin-main .card,
.admin-body .admin-main .content-card,
.admin-body .admin-main .metric,
.admin-body .admin-main .category-card,
.admin-body .admin-main .filters,
.admin-body .admin-main .table-wrap {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.admin-body .admin-main .content-card,
.admin-body .admin-main .metric,
.admin-body .admin-main .category-card,
.admin-body .admin-main .filters {
  padding: 8px;
}

.admin-body .metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.admin-body .metric strong {
  font-size: 24px;
  font-weight: 600;
}

.admin-body .field {
  gap: 3px;
  margin-bottom: 6px;
}

.admin-body .field label,
.admin-body .data-table th,
.admin-body .btn,
.admin-body .pill {
  font-weight: 500;
}

.admin-body input[type="text"],
.admin-body input[type="email"],
.admin-body input[type="password"],
.admin-body input[type="number"],
.admin-body input[type="date"],
.admin-body input[type="datetime-local"],
.admin-body input[type="file"],
.admin-body select,
.admin-body textarea {
  min-height: 30px;
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 12px;
}

.admin-body textarea {
  min-height: 68px;
}

.admin-body .btn {
  min-height: 29px;
  padding: 5px 8px;
  border-radius: 6px;
  box-shadow: none;
  font-size: 12px;
}

.admin-body .data-table {
  min-width: 980px;
}

.admin-body .data-table th,
.admin-body .data-table td {
  padding: 5px 7px;
  font-size: 12px;
}

.admin-body .table-wrap {
  overflow: auto;
}

.admin-body .editor-top-actions,
.admin-body .upload-preview {
  border-radius: 8px;
  background: #f8fbfd;
}

@media (min-width: 1500px) {
  .grid-4 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .grid-4,
  .grid-3,
  .filters,
  .metric-grid,
  .admin-body .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .container,
  .hh-container,
  .admin-body .container,
  .admin-body .admin-layout {
    width: calc(100% - 18px);
  }

  .admin-body .admin-layout,
  .product-detail,
  .account-shell {
    grid-template-columns: 1fr;
  }

  .admin-body .admin-nav.card {
    position: static;
    max-height: none;
  }
}

@media (max-width: 620px) {
  .container,
  .hh-container,
  .admin-body .container,
  .admin-body .admin-layout {
    width: calc(100% - 14px);
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .filters,
  .metric-grid,
  .admin-body .metric-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: stretch;
  }

  .nav-links {
    gap: 4px;
  }

  .home-slider-full,
  .home-slider-full .hero-slider {
    min-height: 430px;
  }
}
/* End full-width modern theme refresh */

/* Admin image previews and compact forms */
.admin-body .admin-editor-card {
  padding: 10px;
}

.admin-body .admin-editor-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 420px));
  gap: 10px 12px;
  align-items: start;
}

.admin-body .admin-form-group,
.admin-body .content-card > .field,
.admin-body .content-card .grid > .field {
  max-width: 420px;
  padding: 9px;
  border: 1px solid #e1eaf4;
  border-radius: 8px;
  background: #ffffff;
}

.admin-body .admin-editor-form .field:has(textarea),
.admin-body .admin-editor-form .field:has(input[type="file"]),
.admin-body .admin-form-group-wide,
.admin-body .admin-form-group-media,
.admin-body .content-card > .field:has(.html-editor) {
  grid-column: 1 / -1;
  max-width: 860px;
}

.admin-body .admin-editor-form .field:has(input[type="checkbox"]) {
  align-self: end;
}

.admin-body .admin-field-input,
.admin-body .field input[type="text"],
.admin-body .field input[type="email"],
.admin-body .field input[type="password"],
.admin-body .field input[type="number"],
.admin-body .field input[type="date"],
.admin-body .field input[type="datetime-local"],
.admin-body .field input[type="file"],
.admin-body .field select {
  max-width: 380px;
}

.admin-body .field textarea,
.admin-body textarea.admin-field-input {
  max-width: 760px;
}

.admin-body textarea.html-editor {
  max-width: 100%;
  min-height: 170px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.admin-body .admin-check-field {
  gap: 6px;
  width: fit-content;
}

.admin-body .admin-check-field input {
  width: 14px;
  height: 14px;
}

.admin-image-cell {
  width: 76px;
}

.admin-image-cell a {
  display: inline-flex;
}

.admin-image-cell img {
  width: 68px;
  height: 54px;
  object-fit: cover;
  border: 1px solid #dbe5ef;
  border-radius: 8px;
  background: #f8fbfd;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.08);
}

.admin-image-cell img:hover {
  transform: scale(1.04);
}

.admin-image-empty {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  color: #64748b;
  background: #f8fafc;
  font-size: 11px;
  white-space: nowrap;
}

.admin-body .admin-upload-preview,
.admin-body .admin-logo-preview {
  width: fit-content;
  min-width: 180px;
  border-radius: 8px;
  background: #f8fbfd;
}

.admin-body .admin-upload-preview img,
.admin-body .admin-logo-preview img {
  width: 86px;
  height: 62px;
  object-fit: contain;
  border: 1px solid #dbe5ef;
  background: #ffffff;
}

.admin-body .admin-upload-preview span,
.admin-body .admin-logo-preview span {
  color: #475569;
  font-size: 12px;
  word-break: normal;
}

.admin-body .admin-hidden-path {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0 !important;
}

@media (max-width: 620px) {
  .admin-body .admin-editor-form,
  .admin-body .content-card .grid.grid-2 {
    grid-template-columns: 1fr;
  }

  .admin-body .admin-form-group,
  .admin-body .content-card > .field,
  .admin-body .content-card .grid > .field,
  .admin-body .admin-field-input,
  .admin-body .field input[type="text"],
  .admin-body .field input[type="email"],
  .admin-body .field input[type="password"],
  .admin-body .field input[type="number"],
  .admin-body .field input[type="date"],
  .admin-body .field input[type="datetime-local"],
  .admin-body .field input[type="file"],
  .admin-body .field select,
  .admin-body .field textarea {
    max-width: 100%;
  }
}
/* End admin image previews and compact forms */

/* Template style refresh */
:root {
  --tpl-ink: #182333;
  --tpl-muted: #657184;
  --tpl-line: #dbe4ea;
  --tpl-page: #f3f7f5;
  --tpl-panel: #ffffff;
  --tpl-soft: #eef5f2;
  --tpl-green: #0d7a5f;
  --tpl-blue: #2276a8;
  --tpl-amber: #f3a712;
  --tpl-red: #c7443e;
  --tpl-shadow: 0 12px 28px rgba(24, 35, 51, 0.07);
}

html,
body {
  width: 100%;
}

body {
  color: var(--tpl-ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}

.container,
.hh-container,
.admin-body .container {
  width: calc(100% - 28px);
  max-width: none;
}

body:not(.admin-body) {
  background: var(--tpl-page);
}

body:not(.admin-body) .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(219, 228, 234, 0.92);
  box-shadow: 0 8px 26px rgba(24, 35, 51, 0.055);
}

body:not(.admin-body) .top-bar {
  background: #173d3d;
  color: #f8fcfb;
}

body:not(.admin-body) .top-bar-inner {
  min-height: 34px;
}

body:not(.admin-body) .nav {
  min-height: 68px;
  gap: 18px;
}

body:not(.admin-body) .brand {
  color: var(--tpl-ink);
  font-size: 16px;
  font-weight: 600;
}

body:not(.admin-body) .brand-logo {
  height: 68px;
  max-width: 180px;
}

body:not(.admin-body) .nav-links {
  gap: 6px;
}

body:not(.admin-body) .nav-links > a,
body:not(.admin-body) .category-menu > summary {
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #2d3a4b;
  font-size: 13px;
  font-weight: 500;
}

body:not(.admin-body) .nav-links > a:hover,
body:not(.admin-body) .category-menu > summary:hover {
  background: var(--tpl-soft);
  color: var(--tpl-green);
}

body:not(.admin-body) .category-dropdown,
body:not(.admin-body) .account-popover {
  border: 1px solid var(--tpl-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--tpl-shadow);
}

body:not(.admin-body) .nested-menu summary,
body:not(.admin-body) .nested-menu a,
body:not(.admin-body) .account-popover a {
  border-radius: 7px;
  color: #344054;
  font-size: 12px;
  font-weight: 500;
}

body:not(.admin-body) .nav-actions {
  gap: 8px;
}

body:not(.admin-body) .icon-box {
  width: 39px;
  height: 39px;
  border: 1px solid var(--tpl-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--tpl-green);
  box-shadow: none;
}

body:not(.admin-body) .icon-box:hover {
  background: var(--tpl-green);
  color: #ffffff;
}

body:not(.admin-body) .count-badge {
  background: var(--tpl-amber);
  color: #261a00;
}

body:not(.admin-body) .page {
  padding: 16px 0 34px;
}

body:not(.admin-body) .home-slider-full {
  margin: -16px 0 18px;
}

body:not(.admin-body) .home-slider-full .hero-slider,
body:not(.admin-body) .hero-slider {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body:not(.admin-body) .section-head {
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(219, 228, 234, 0.85);
}

body:not(.admin-body) .section-head h1,
body:not(.admin-body) .section-head h2,
body:not(.admin-body) .hh-section-title h2 {
  color: var(--tpl-ink);
  font-weight: 600;
  letter-spacing: 0;
}

body:not(.admin-body) .section-head h1 {
  font-size: clamp(26px, 2.4vw, 36px);
}

body:not(.admin-body) .section-head h2,
body:not(.admin-body) .hh-section-title h2 {
  font-size: clamp(22px, 2vw, 30px);
}

body:not(.admin-body) .card,
body:not(.admin-body) .content-card,
body:not(.admin-body) .category-card,
body:not(.admin-body) .product-card,
body:not(.admin-body) .summary-panel,
body:not(.admin-body) .filters,
body:not(.admin-body) .table-wrap,
body:not(.admin-body) .hh-sidebar-box,
body:not(.admin-body) .hh-contact-info-card,
body:not(.admin-body) .hh-mvv-card,
body:not(.admin-body) .hh-about-why-card {
  border: 1px solid var(--tpl-line);
  border-radius: 8px;
  background: var(--tpl-panel);
  box-shadow: var(--tpl-shadow);
}

body:not(.admin-body) .card:hover,
body:not(.admin-body) .product-card:hover,
body:not(.admin-body) .category-card:hover,
body:not(.admin-body) .content-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(24, 35, 51, 0.095);
}

body:not(.admin-body) .product-body,
body:not(.admin-body) .category-card,
body:not(.admin-body) .content-card,
body:not(.admin-body) .summary-panel,
body:not(.admin-body) .filters {
  padding: 14px;
}

body:not(.admin-body) .product-image,
body:not(.admin-body) .category-image,
body:not(.admin-body) .main-product-image,
body:not(.admin-body) .thumbnail-row img,
body:not(.admin-body) .taxonomy-hero-image {
  border-radius: 7px;
  background: #edf4ef;
}

body:not(.admin-body) .product-title,
body:not(.admin-body) .category-card h3 {
  color: var(--tpl-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

body:not(.admin-body) .muted,
body:not(.admin-body) .product-body,
body:not(.admin-body) .category-card,
body:not(.admin-body) .content-card,
body:not(.admin-body) .cms-content {
  color: var(--tpl-muted);
  font-size: 13px;
}

body:not(.admin-body) .price {
  color: var(--tpl-green);
  font-size: 15px;
  font-weight: 600;
}

body:not(.admin-body) .pill {
  min-height: 23px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff4d8;
  color: #835800;
  font-size: 11px;
  font-weight: 500;
}

body:not(.admin-body) .btn {
  min-height: 35px;
  padding: 7px 13px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--tpl-green);
  color: #ffffff;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
}

body:not(.admin-body) .btn:hover {
  background: #096a52;
}

body:not(.admin-body) .btn.secondary {
  background: #ffffff;
  color: #253449;
  border-color: var(--tpl-line);
}

body:not(.admin-body) .btn.secondary:hover {
  background: var(--tpl-soft);
}

body:not(.admin-body) input[type="text"],
body:not(.admin-body) input[type="email"],
body:not(.admin-body) input[type="password"],
body:not(.admin-body) input[type="number"],
body:not(.admin-body) input[type="date"],
body:not(.admin-body) input[type="datetime-local"],
body:not(.admin-body) select,
body:not(.admin-body) textarea {
  min-height: 36px;
  border-radius: 7px;
  border-color: #cfd9df;
  font-size: 13px;
}

body:not(.admin-body) input:focus,
body:not(.admin-body) select:focus,
body:not(.admin-body) textarea:focus {
  border-color: var(--tpl-blue);
  box-shadow: 0 0 0 3px rgba(34, 118, 168, 0.14);
  outline: 0;
}

body:not(.admin-body) .data-table th {
  background: #f1f6f4;
  color: #2d3a4b;
  font-weight: 600;
}

body:not(.admin-body) .data-table th,
body:not(.admin-body) .data-table td {
  padding: 9px 10px;
  font-size: 13px;
}

body:not(.admin-body) .footer {
  background: #ffffff;
  border-top: 1px solid var(--tpl-line);
}

.admin-body {
  background: #eef3f6;
  color: #1e2a3b;
  font-size: 12px;
}

.admin-body .site-header {
  background: #ffffff;
  border-bottom: 1px solid #dce5ec;
  box-shadow: 0 8px 20px rgba(24, 35, 51, 0.055);
}

.admin-body .container,
.admin-body .admin-layout {
  width: calc(100% - 16px);
  max-width: none;
}

.admin-body .nav {
  min-height: 50px;
  padding: 5px 0;
}

.admin-body .brand {
  color: #1e2a3b;
  font-size: 15px;
  font-weight: 500;
}

.admin-body .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--tpl-green), var(--tpl-blue));
}

.admin-body .nav-links a {
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid #dce5ec;
  border-radius: 7px;
  background: #ffffff;
  color: #2d3a4b;
  font-size: 12px;
  font-weight: 500;
}

.admin-body .page {
  padding: 8px 0 12px;
}

.admin-body .admin-layout {
  grid-template-columns: 224px minmax(0, 1fr);
  gap: 8px;
  margin: 0 auto;
}

.admin-body .admin-nav.card {
  position: sticky;
  top: 62px;
  max-height: calc(100vh - 74px);
  overflow: auto;
  padding: 6px;
  border: 1px solid #dce5ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--tpl-shadow);
}

.admin-body .admin-menu-group {
  margin: 0 0 4px;
}

.admin-body .admin-menu-group summary,
.admin-body .admin-nav a {
  min-height: 28px;
  padding: 5px 7px;
  border-radius: 6px;
  color: #344054;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.admin-body .admin-menu-group summary {
  background: #f1f6f4;
  color: #1e2a3b;
}

.admin-body .admin-menu-group[open] summary {
  color: var(--tpl-green);
}

.admin-body .admin-menu-group summary:hover,
.admin-body .admin-nav a:hover {
  background: #e7f2ee;
  color: var(--tpl-green);
}

.admin-body .admin-icon {
  width: 13px;
  height: 13px;
  flex-basis: 13px;
  border-radius: 4px;
  background: #d7ebe4;
}

.admin-body .admin-icon::before {
  background: var(--tpl-green);
}

.admin-body .section-head {
  margin: 6px 0 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid #dce5ec;
}

.admin-body .section-head h1 {
  font-size: 20px;
  font-weight: 600;
}

.admin-body .section-head h2 {
  font-size: 15px;
  font-weight: 600;
}

.admin-body .admin-main .card,
.admin-body .admin-main .content-card,
.admin-body .admin-main .metric,
.admin-body .admin-main .category-card,
.admin-body .admin-main .filters,
.admin-body .admin-main .table-wrap,
.admin-body .admin-form-group,
.admin-body .content-card > .field,
.admin-body .content-card .grid > .field {
  border: 1px solid #dce5ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(24, 35, 51, 0.045);
}

.admin-body .admin-main .content-card,
.admin-body .admin-main .metric,
.admin-body .admin-main .category-card,
.admin-body .admin-main .filters,
.admin-body .admin-form-group,
.admin-body .content-card > .field,
.admin-body .content-card .grid > .field {
  padding: 8px;
}

.admin-body .admin-editor-form {
  grid-template-columns: repeat(auto-fit, minmax(230px, 390px));
  gap: 8px;
}

.admin-body .admin-form-group,
.admin-body .content-card > .field,
.admin-body .content-card .grid > .field {
  max-width: 390px;
}

.admin-body .admin-editor-form .field:has(textarea),
.admin-body .admin-editor-form .field:has(input[type="file"]),
.admin-body .admin-form-group-wide,
.admin-body .admin-form-group-media,
.admin-body .content-card > .field:has(.html-editor) {
  max-width: 820px;
}

.admin-body .field {
  gap: 3px;
  margin-bottom: 6px;
}

.admin-body .field label,
.admin-body .data-table th,
.admin-body .btn,
.admin-body .pill {
  font-weight: 500;
}

.admin-body input[type="text"],
.admin-body input[type="email"],
.admin-body input[type="password"],
.admin-body input[type="number"],
.admin-body input[type="date"],
.admin-body input[type="datetime-local"],
.admin-body input[type="file"],
.admin-body select,
.admin-body textarea {
  min-height: 30px;
  padding: 5px 7px;
  border-color: #cfd9df;
  border-radius: 6px;
  font-size: 12px;
}

.admin-body input:focus,
.admin-body select:focus,
.admin-body textarea:focus {
  border-color: var(--tpl-blue);
  box-shadow: 0 0 0 3px rgba(34, 118, 168, 0.13);
  outline: 0;
}

.admin-body .btn {
  min-height: 29px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--tpl-green);
  font-size: 12px;
  font-weight: 500;
}

.admin-body .btn.secondary {
  background: #ffffff;
  color: #2d3a4b;
  border: 1px solid #dce5ec;
}

.admin-body .btn.danger {
  background: var(--tpl-red);
}

.admin-body .data-table {
  min-width: 980px;
  font-size: 12px;
}

.admin-body .data-table th {
  background: #f1f6f4;
  color: #2d3a4b;
  font-weight: 600;
}

.admin-body .data-table th,
.admin-body .data-table td {
  padding: 6px 8px;
}

.admin-body .metric-grid {
  gap: 8px;
}

.admin-body .metric strong {
  color: var(--tpl-green);
  font-size: 24px;
  font-weight: 600;
}

@media (min-width: 1500px) {
  body:not(.admin-body) .grid-4 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  body:not(.admin-body) .grid-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .container,
  .hh-container,
  .admin-body .container,
  .admin-body .admin-layout {
    width: calc(100% - 18px);
  }

  .admin-body .admin-layout,
  .product-detail,
  .account-shell {
    grid-template-columns: 1fr;
  }

  .admin-body .admin-nav.card {
    position: static;
    max-height: none;
  }
}

@media (max-width: 620px) {
  .container,
  .hh-container,
  .admin-body .container,
  .admin-body .admin-layout {
    width: calc(100% - 14px);
  }

  body:not(.admin-body) .nav {
    align-items: stretch;
  }

  body:not(.admin-body) .nav-links {
    gap: 4px;
  }

  body:not(.admin-body) .social-links {
    display: none;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .filters,
  .metric-grid,
  .admin-body .metric-grid {
    grid-template-columns: 1fr;
  }
}
/* End template style refresh */

/* Complete frontend and admin redesign */
:root {
  --rd-text: #17212f;
  --rd-muted: #667085;
  --rd-border: #dce6df;
  --rd-bg: #f4f8f5;
  --rd-surface: #ffffff;
  --rd-soft: #edf5f0;
  --rd-green: #0b7556;
  --rd-green-dark: #064b3b;
  --rd-blue: #256f9c;
  --rd-blue-soft: #e9f3f8;
  --rd-gold: #d99b1c;
  --rd-red: #ba3d36;
  --rd-shadow: 0 8px 22px rgba(23, 33, 47, 0.065);
  --rd-shadow-strong: 0 14px 32px rgba(23, 33, 47, 0.09);
}

* {
  letter-spacing: 0;
}

html {
  background: var(--rd-bg);
}

body,
button,
input,
select,
textarea {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

body {
  color: var(--rd-text);
  font-size: 13px;
  line-height: 1.5;
}

.container,
.hh-container,
.admin-body .container,
.admin-body .admin-layout {
  width: calc(100% - 24px);
  max-width: none;
}

.page {
  padding: 12px 0 28px;
}

.section-head {
  gap: 10px;
  margin: 18px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(220, 230, 223, 0.92);
}

.section-head h1,
.section-head h2,
.hh-section-title h2 {
  margin: 0;
  color: var(--rd-text);
  font-weight: 700;
  line-height: 1.18;
}

.section-head h1 {
  font-size: clamp(24px, 2.1vw, 34px);
}

.section-head h2,
.hh-section-title h2 {
  font-size: clamp(20px, 1.8vw, 28px);
}

.muted {
  color: var(--rd-muted);
}

.grid {
  gap: 12px;
}

.card,
.content-card,
.category-card,
.product-card,
.summary-panel,
.filters,
.table-wrap,
.metric,
.hh-sidebar-box,
.hh-contact-info-card,
.hh-mvv-card,
.hh-about-why-card,
.taxonomy-hero {
  border: 1px solid var(--rd-border);
  border-radius: 8px;
  background: var(--rd-surface);
  box-shadow: var(--rd-shadow);
}

.card:hover,
.content-card:hover,
.category-card:hover,
.product-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--rd-shadow-strong);
}

.product-body,
.category-card,
.content-card,
.summary-panel,
.filters,
.metric,
.taxonomy-hero {
  padding: 12px;
}

.btn {
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--rd-green);
  color: #ffffff;
  box-shadow: none;
  font-size: 12px;
  font-weight: 600;
}

.btn:hover {
  background: var(--rd-green-dark);
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  color: #253345;
  border-color: var(--rd-border);
}

.btn.secondary:hover {
  background: var(--rd-soft);
  color: var(--rd-green-dark);
}

.btn.danger {
  background: var(--rd-red);
}

.pill {
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff5de;
  color: #7a5200;
  font-size: 11px;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
input[type="file"],
select,
textarea {
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid #ccd8d1;
  border-radius: 6px;
  background: #ffffff;
  color: var(--rd-text);
  font-size: 12px;
}

textarea {
  min-height: 92px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--rd-blue);
  box-shadow: 0 0 0 3px rgba(37, 111, 156, 0.13);
  outline: 0;
}

.field {
  gap: 4px;
  margin-bottom: 8px;
}

.field label {
  color: #324056;
  font-size: 12px;
  font-weight: 600;
}

.data-table {
  font-size: 12px;
}

.data-table th,
.data-table td {
  padding: 7px 9px;
  border-bottom: 1px solid var(--rd-border);
  vertical-align: middle;
}

.data-table th {
  background: var(--rd-soft);
  color: #2f3d52;
  font-weight: 700;
}

body.storefront-body {
  background: var(--rd-bg);
}

.storefront-body .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(220, 230, 223, 0.95);
  box-shadow: 0 8px 20px rgba(23, 33, 47, 0.05);
}

.storefront-body .top-bar {
  background: #173c35;
  color: #f6fbf8;
  font-size: 12px;
}

.storefront-body .top-bar-inner {
  min-height: 30px;
  gap: 10px;
}

.storefront-body .top-left,
.storefront-body .top-right {
  gap: 9px;
}

.storefront-body .social-links {
  gap: 6px;
}

.storefront-body .social-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.storefront-body .nav {
  min-height: 60px;
  gap: 12px;
}

.storefront-body .brand {
  gap: 8px;
  color: var(--rd-text);
  font-size: 16px;
  font-weight: 700;
}

.storefront-body .brand-logo {
  height: 44px;
  max-width: 170px;
}

.storefront-body .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--rd-green), var(--rd-blue));
}

.storefront-body .nav-links {
  gap: 4px;
}

.storefront-body .nav-links > a,
.storefront-body .category-menu > summary {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 9px;
  border-radius: 6px;
  color: #2f3d52;
  font-size: 12px;
  font-weight: 600;
}

.storefront-body .nav-links > a:hover,
.storefront-body .category-menu > summary:hover,
.storefront-body .category-menu[open] > summary {
  background: var(--rd-soft);
  color: var(--rd-green);
}

.storefront-body .category-dropdown,
.storefront-body .account-popover {
  top: 46px;
  padding: 6px;
  border: 1px solid var(--rd-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--rd-shadow-strong);
}

.storefront-body .nested-menu summary,
.storefront-body .nested-menu a,
.storefront-body .account-popover a {
  min-height: 30px;
  padding: 6px 8px;
  border-radius: 6px;
  color: #344054;
  font-size: 12px;
  font-weight: 500;
}

.storefront-body .nested-menu summary:hover,
.storefront-body .nested-menu a:hover,
.storefront-body .account-popover a:hover {
  background: var(--rd-soft);
  color: var(--rd-green);
}

.storefront-body .nav-actions {
  gap: 6px;
}

.storefront-body .icon-box {
  width: 36px;
  height: 36px;
  border: 1px solid var(--rd-border);
  border-radius: 6px;
  background: #ffffff;
  color: var(--rd-green);
  box-shadow: none;
}

.storefront-body .icon-box:hover {
  background: var(--rd-green);
  color: #ffffff;
}

.storefront-body .count-badge {
  min-width: 17px;
  height: 17px;
  background: var(--rd-gold);
  color: #201400;
  font-size: 10px;
}

.storefront-body .home-slider-full {
  min-height: 460px;
  margin: -12px 0 14px;
  background: #0d2f2c;
}

.storefront-body .home-slider-full .hero-slider,
.storefront-body .hero-slider {
  min-height: 460px;
  border: 0;
  border-radius: 0;
  background-color: #0d2f2c;
  box-shadow: none;
}

.storefront-body .home-slider-full .hero-slider h1,
.storefront-body .hero-slider h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1.03;
}

.storefront-body .home-slider-full .hero-slider p,
.storefront-body .hero-slider p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.storefront-body .home-slider-full .hero-slider .btn,
.storefront-body .hero-slider .btn {
  background: #ffffff;
  color: var(--rd-green-dark);
}

.storefront-body .product-image,
.storefront-body .category-image,
.storefront-body .main-product-image,
.storefront-body .thumbnail-row img,
.storefront-body .taxonomy-hero-image {
  border-radius: 6px;
  background: #edf4ef;
}

.storefront-body .product-title,
.storefront-body .category-card h3 {
  margin-bottom: 5px;
  color: var(--rd-text);
  font-size: 14px;
  font-weight: 700;
}

.storefront-body .product-card {
  overflow: hidden;
}

.storefront-body .price {
  color: var(--rd-green);
  font-size: 14px;
  font-weight: 700;
}

.storefront-body .filters {
  gap: 8px;
  margin-bottom: 12px;
}

.storefront-body .footer {
  padding: 24px 0 0;
  background: #ffffff;
  border-top: 1px solid var(--rd-border);
}

.storefront-body .footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(140px, 1fr));
  gap: 14px;
}

.storefront-body .footer h4 {
  margin-bottom: 8px;
  color: var(--rd-text);
  font-size: 14px;
  font-weight: 700;
}

.storefront-body .footer a,
.storefront-body .footer p {
  margin-bottom: 5px;
  color: var(--rd-muted);
  font-size: 12px;
}

.storefront-body .footer a:hover {
  color: var(--rd-green);
}

.storefront-body .footer-bottom {
  margin-top: 18px;
  padding: 10px 0;
  border-top: 1px solid var(--rd-border);
  color: var(--rd-muted);
  font-size: 12px;
}

.admin-template-body {
  background: #eef4f2;
  color: var(--rd-text);
  font-size: 12px;
}

.admin-template-body .site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--rd-border);
  box-shadow: 0 8px 20px rgba(23, 33, 47, 0.05);
}

.admin-template-body .nav {
  min-height: 48px;
  padding: 4px 0;
}

.admin-template-body .brand {
  gap: 8px;
  color: var(--rd-text);
  font-size: 15px;
  font-weight: 700;
}

.admin-template-body .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--rd-green), var(--rd-blue));
}

.admin-template-body .nav-links a {
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid var(--rd-border);
  border-radius: 6px;
  background: #ffffff;
  color: #2f3d52;
  font-size: 12px;
  font-weight: 600;
}

.admin-template-body .page {
  padding: 8px 0 10px;
}

.admin-template-body .admin-layout {
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 8px;
  margin: 0 auto;
}

.admin-template-body .admin-nav.card {
  position: sticky;
  top: 58px;
  max-height: calc(100vh - 68px);
  overflow: auto;
  padding: 5px;
  border: 1px solid var(--rd-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--rd-shadow);
}

.admin-template-body .admin-menu-group {
  margin: 0 0 3px;
}

.admin-template-body .admin-menu-group summary,
.admin-template-body .admin-nav a {
  min-height: 27px;
  padding: 5px 6px;
  border-radius: 6px;
  color: #344054;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.admin-template-body .admin-menu-group summary {
  background: var(--rd-soft);
  color: var(--rd-text);
}

.admin-template-body .admin-menu-group[open] summary,
.admin-template-body .admin-menu-group summary:hover,
.admin-template-body .admin-nav a:hover {
  background: #e2f0ea;
  color: var(--rd-green);
}

.admin-template-body .admin-icon {
  width: 12px;
  height: 12px;
  flex-basis: 12px;
  border-radius: 3px;
  background: #cee7dc;
}

.admin-template-body .admin-icon::before {
  width: 5px;
  height: 5px;
  background: var(--rd-green);
}

.admin-template-body .section-head {
  margin: 5px 0 7px;
  padding-bottom: 6px;
}

.admin-template-body .section-head h1 {
  font-size: 19px;
}

.admin-template-body .section-head h2 {
  font-size: 15px;
}

.admin-template-body .admin-main .card,
.admin-template-body .admin-main .content-card,
.admin-template-body .admin-main .metric,
.admin-template-body .admin-main .category-card,
.admin-template-body .admin-main .filters,
.admin-template-body .admin-main .table-wrap,
.admin-template-body .admin-form-group,
.admin-template-body .content-card > .field,
.admin-template-body .content-card .grid > .field {
  border: 1px solid var(--rd-border);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(23, 33, 47, 0.045);
}

.admin-template-body .admin-main .content-card,
.admin-template-body .admin-main .metric,
.admin-template-body .admin-main .category-card,
.admin-template-body .admin-main .filters,
.admin-template-body .admin-form-group,
.admin-template-body .content-card > .field,
.admin-template-body .content-card .grid > .field {
  padding: 7px;
}

.admin-template-body .admin-editor-form {
  grid-template-columns: repeat(auto-fit, minmax(220px, 360px));
  gap: 7px;
}

.admin-template-body .admin-form-group,
.admin-template-body .content-card > .field,
.admin-template-body .content-card .grid > .field {
  max-width: 360px;
}

.admin-template-body .admin-editor-form .field:has(textarea),
.admin-template-body .admin-editor-form .field:has(input[type="file"]),
.admin-template-body .admin-form-group-wide,
.admin-template-body .admin-form-group-media,
.admin-template-body .content-card > .field:has(.html-editor) {
  max-width: 780px;
}

.admin-template-body .admin-field-input,
.admin-template-body .field input[type="text"],
.admin-template-body .field input[type="email"],
.admin-template-body .field input[type="password"],
.admin-template-body .field input[type="number"],
.admin-template-body .field input[type="date"],
.admin-template-body .field input[type="datetime-local"],
.admin-template-body .field input[type="file"],
.admin-template-body .field select {
  max-width: 330px;
}

.admin-template-body .field textarea,
.admin-template-body textarea.admin-field-input {
  max-width: 720px;
}

.admin-template-body input[type="text"],
.admin-template-body input[type="email"],
.admin-template-body input[type="password"],
.admin-template-body input[type="number"],
.admin-template-body input[type="date"],
.admin-template-body input[type="datetime-local"],
.admin-template-body input[type="file"],
.admin-template-body select,
.admin-template-body textarea {
  min-height: 29px;
  padding: 5px 7px;
  border-radius: 5px;
  font-size: 12px;
}

.admin-template-body .btn {
  min-height: 28px;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 12px;
}

.admin-template-body .data-table {
  min-width: 980px;
}

.admin-template-body .data-table th,
.admin-template-body .data-table td {
  padding: 5px 7px;
  font-size: 12px;
}

.admin-template-body .metric-grid {
  gap: 7px;
}

.admin-template-body .metric strong {
  color: var(--rd-green);
  font-size: 23px;
  font-weight: 700;
}

@media (min-width: 1500px) {
  .storefront-body .grid-4 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .storefront-body .grid-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .storefront-body .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .container,
  .hh-container,
  .admin-body .container,
  .admin-body .admin-layout {
    width: calc(100% - 16px);
  }

  .admin-template-body .admin-layout,
  .product-detail,
  .account-shell {
    grid-template-columns: 1fr;
  }

  .admin-template-body .admin-nav.card {
    position: static;
    max-height: none;
  }

  .storefront-body .nav {
    align-items: stretch;
  }

  .storefront-body .nav-links {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .container,
  .hh-container,
  .admin-body .container,
  .admin-body .admin-layout {
    width: calc(100% - 12px);
  }

  .storefront-body .social-links {
    display: none;
  }

  .storefront-body .footer-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .filters,
  .metric-grid,
  .admin-body .metric-grid {
    grid-template-columns: 1fr;
  }

  .storefront-body .home-slider-full,
  .storefront-body .home-slider-full .hero-slider,
  .storefront-body .hero-slider {
    min-height: 390px;
  }

  .storefront-body .home-slider-full .hero-slider h1,
  .storefront-body .hero-slider h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .admin-template-body .admin-form-group,
  .admin-template-body .content-card > .field,
  .admin-template-body .content-card .grid > .field,
  .admin-template-body .admin-field-input,
  .admin-template-body .field input[type="text"],
  .admin-template-body .field input[type="email"],
  .admin-template-body .field input[type="password"],
  .admin-template-body .field input[type="number"],
  .admin-template-body .field input[type="date"],
  .admin-template-body .field input[type="datetime-local"],
  .admin-template-body .field input[type="file"],
  .admin-template-body .field select,
  .admin-template-body .field textarea {
    max-width: 100%;
  }
}
/* End complete frontend and admin redesign */

/* COSI One Plus logo palette storefront shell */
:root {
  --hc-green-dark: #668d00;
  --hc-green: #7fab00;
  --hc-leaf: #9bc72d;
  --hc-blue-dark: #111111;
  --hc-blue: #242424;
  --hc-aqua: #dceab8;
  --hc-ink: #171717;
  --hc-muted: #676767;
  --hc-border: #e1e5d9;
  --hc-soft: #f2f6e8;
  --hc-page: #f8faf5;
  --hc-white: #ffffff;
  --hc-shadow: 0 12px 32px rgba(17, 17, 17, 0.11);
  --rd-text: var(--hc-ink);
  --rd-muted: var(--hc-muted);
  --rd-border: var(--hc-border);
  --rd-bg: var(--hc-page);
  --rd-surface: var(--hc-white);
  --rd-soft: var(--hc-soft);
  --rd-green: var(--hc-green-dark);
  --rd-green-dark: #526f00;
  --rd-blue: var(--hc-blue);
  --rd-blue-soft: #f2f3ee;
  --rd-gold: var(--hc-leaf);
}

.storefront-body {
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  background: var(--hc-page);
  color: var(--hc-ink);
}

.storefront-body button,
.storefront-body input,
.storefront-body select,
.storefront-body textarea {
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
}

.storefront-body .site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  border: 0;
  background: var(--hc-white);
  box-shadow: 0 8px 26px rgba(17, 17, 17, 0.08);
}

.storefront-body .top-bar {
  background: #101010;
  color: var(--hc-white);
}

.storefront-body .top-bar-inner {
  min-height: 34px;
  justify-content: space-between;
  padding: 3px 0;
}

.storefront-body .top-left,
.storefront-body .top-right,
.storefront-body .top-left span {
  display: flex;
  align-items: center;
}

.storefront-body .top-left {
  gap: 20px;
}

.storefront-body .top-left span {
  gap: 7px;
  white-space: nowrap;
}

.storefront-body .top-bar i {
  color: var(--hc-leaf);
}

.storefront-body .top-bar a {
  color: rgba(255, 255, 255, 0.9);
}

.storefront-body .top-bar a:hover {
  color: var(--hc-leaf);
}

.storefront-body .social-links {
  display: flex;
  gap: 5px;
}

.storefront-body .social-icon {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.11);
}

.storefront-body .social-icon:hover {
  background: var(--hc-leaf);
  color: var(--hc-blue-dark);
  transform: translateY(-1px);
}

.storefront-body .header-main {
  position: relative;
  background: var(--hc-white);
}

.storefront-body .header-main-inner {
  display: grid;
  grid-template-columns: minmax(180px, 255px) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 8px 0;
}

.storefront-body .brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--hc-blue-dark);
}

.storefront-body .brand-logo {
  width: auto;
  height: 58px;
  max-width: 215px;
  object-fit: contain;
}

.storefront-body .brand-logo + .brand-name {
  display: none;
}

.storefront-body .brand-name {
  overflow: hidden;
  color: var(--hc-blue-dark);
  font-size: 16px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-body .header-search {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 42px;
  align-items: center;
  width: 100%;
  max-width: 680px;
  min-height: 42px;
  justify-self: center;
  border: 1px solid #d9ddcf;
  border-radius: 7px;
  background: #fcfdf9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.storefront-body .header-search:focus-within {
  border-color: var(--hc-green);
  box-shadow: 0 0 0 3px rgba(127, 171, 0, 0.14);
}

.storefront-body .header-search > i {
  color: var(--hc-green-dark);
  text-align: center;
}

.storefront-body .header-search input[type="search"] {
  width: 100%;
  min-height: 40px;
  padding: 8px 5px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--hc-ink);
  font-size: 14px;
  outline: 0;
}

.storefront-body .header-search input[type="search"]::-webkit-search-cancel-button {
  cursor: pointer;
}

.storefront-body .header-search button {
  display: grid;
  width: 34px;
  height: 32px;
  place-items: center;
  justify-self: end;
  margin-right: 4px;
  border: 0;
  border-radius: 5px;
  background: var(--hc-green);
  color: #111111;
}

.storefront-body .header-search button:hover {
  background: var(--hc-leaf);
}

.storefront-body .search-results {
  position: absolute;
  top: calc(100% + 6px);
  right: -1px;
  left: -1px;
  z-index: 1090;
  display: none;
  max-height: 390px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--hc-border);
  border-radius: 7px;
  background: var(--hc-white);
  box-shadow: var(--hc-shadow);
}

.storefront-body .search-results.open {
  display: block;
}

.storefront-body .search-result-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 5px;
  border-radius: 5px;
  color: var(--hc-ink);
}

.storefront-body .search-result-item:hover,
.storefront-body .search-result-item:focus {
  background: var(--hc-soft);
}

.storefront-body .search-result-item img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--hc-border);
  border-radius: 5px;
  background: #f7f8f3;
  object-fit: contain;
}

.storefront-body .search-result-copy {
  display: grid;
  min-width: 0;
}

.storefront-body .search-result-copy strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-body .search-result-copy small {
  color: var(--hc-muted);
  font-size: 11px;
}

.storefront-body .search-empty {
  padding: 16px;
  color: var(--hc-muted);
  text-align: center;
}

.storefront-body .header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.storefront-body .header-account .account-menu {
  position: relative;
}

.storefront-body .header-account .account-menu > summary,
.storefront-body .header-action,
.storefront-body .menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border: 1px solid var(--hc-border);
  border-radius: 6px;
  background: var(--hc-white);
  color: #161616;
}

.storefront-body .header-account .account-menu > summary {
  gap: 7px;
  padding: 0 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  list-style: none;
}

.storefront-body .header-account .account-menu > summary::-webkit-details-marker {
  display: none;
}

.storefront-body .header-account .account-menu > summary:hover,
.storefront-body .header-action:hover,
.storefront-body .menu-btn:hover {
  border-color: var(--hc-green);
  background: var(--hc-soft);
  color: #111111;
}

.storefront-body .header-account .account-popover {
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  width: 240px;
}

.storefront-body .header-action,
.storefront-body .menu-btn {
  position: relative;
  width: 38px;
  flex: 0 0 38px;
  font-size: 14px;
}

.storefront-body .header-action .count-badge {
  position: absolute;
  top: -7px;
  right: -6px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding: 0 4px;
  border: 2px solid var(--hc-white);
  border-radius: 9px;
  background: var(--hc-green);
  color: #111111;
  font-size: 9px;
  line-height: 1;
}

.storefront-body .navigation-band {
  border-top: 0;
  border-bottom: 3px solid var(--hc-green);
  background: #111111;
}

.storefront-body .navigation-band .nav {
  display: block;
  min-height: 42px;
  padding: 0;
}

.storefront-body .navigation-band .nav-links {
  display: flex;
  align-items: stretch;
  gap: 1px;
  min-height: 46px;
}

.storefront-body .navigation-band .nav-links > a,
.storefront-body .navigation-band .category-menu > summary {
  min-height: 46px;
  padding: 9px 13px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
}

.storefront-body .navigation-band .category-menu > summary {
  min-width: 184px;
  justify-content: space-between;
  margin-right: 5px;
  padding-right: 14px;
  padding-left: 14px;
  background: var(--hc-green);
  color: #111111;
  font-weight: 600;
}

.storefront-body .navigation-band .category-menu > summary::before {
  margin-right: 8px;
  content: "\f0c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.storefront-body .navigation-band .nav-links > a:hover,
.storefront-body .navigation-band .category-menu[open] > summary {
  background: #292929;
  color: var(--hc-leaf);
}

.storefront-body .navigation-band .category-menu[open] > summary {
  background: var(--hc-leaf);
  color: #111111;
  box-shadow: none;
}

.storefront-body .navigation-band .nav-highlight {
  color: var(--hc-leaf);
}

.storefront-body .navigation-band .nav-highlight i {
  margin-right: 4px;
  color: var(--hc-leaf);
}

.storefront-body .category-menu {
  position: relative;
}

.storefront-body .navigation-band .category-dropdown {
  top: calc(100% + 1px);
  left: 0;
  display: grid;
  width: min(880px, calc(100vw - 28px));
  grid-template-columns: repeat(4, minmax(155px, 1fr));
  gap: 5px;
  padding: 10px;
  border: 1px solid #dfe3d7;
  border-top: 3px solid var(--hc-green);
  border-radius: 0 0 7px 7px;
  background: var(--hc-white);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.16);
}

.storefront-body .navigation-band .category-dropdown::before {
  grid-column: 1 / -1;
  padding: 2px 5px 7px;
  border-bottom: 1px solid var(--hc-border);
  color: #171717;
  content: "Featured categories";
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.storefront-body .navigation-band .nested-menu {
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 5px;
}

.storefront-body .navigation-band .nested-menu[open] {
  border-color: var(--hc-border);
  background: #fafcf6;
}

.storefront-body .navigation-band .nested-menu summary,
.storefront-body .navigation-band .nested-menu a {
  min-height: 30px;
  padding: 6px 8px;
  font-size: 13px;
}

.storefront-body .navigation-band .nested-menu summary {
  color: #171717;
  font-weight: 600;
}

.storefront-body .menu-toggle,
.storefront-body .mobile-drawer,
.storefront-body .mobile-menu-backdrop,
.storefront-body .menu-btn {
  display: none;
}

.storefront-body .footer {
  margin-top: 28px;
  padding: 34px 0 0;
  border: 0;
  background: #111111;
  color: rgba(255, 255, 255, 0.8);
}

.storefront-body .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(130px, 1fr));
  gap: 30px;
}

.storefront-body .footer h4 {
  margin: 0 0 12px;
  color: var(--hc-white);
  font-size: 13px;
  font-weight: 600;
}

.storefront-body .footer p,
.storefront-body .footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.65;
}

.storefront-body .footer-grid > div:not(.footer-company):not(.footer-newsletter) > a {
  display: block;
  width: fit-content;
  margin-bottom: 6px;
}

.storefront-body .footer a:hover {
  color: var(--hc-leaf);
}

.storefront-body .footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 5px;
  background: var(--hc-white);
}

.storefront-body .footer-logo img {
  width: auto;
  height: 48px;
  max-width: 190px;
  object-fit: contain;
}

.storefront-body .footer-company > p:first-of-type {
  max-width: 290px;
  margin-bottom: 12px;
}

.storefront-body .footer-contact-line {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 6px;
  margin-bottom: 5px;
}

.storefront-body .footer-contact-line i {
  padding-top: 4px;
  color: var(--hc-leaf);
}

.storefront-body .footer-newsletter p {
  margin-bottom: 9px;
}

.storefront-body .newsletter-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.storefront-body .newsletter-field input[type="email"] {
  width: 100%;
  min-height: 38px;
  padding: 7px 9px;
  border: 0;
  background: transparent;
  color: var(--hc-white);
  box-shadow: none;
}

.storefront-body .newsletter-field input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.storefront-body .newsletter-field button {
  border: 0;
  background: var(--hc-leaf);
  color: #111111;
}

.storefront-body .newsletter-status {
  display: block;
  min-height: 18px;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
}

.storefront-body .footer-trust-row,
.storefront-body .footer-bottom,
.storefront-body .payment-methods,
.storefront-body .footer-social {
  display: flex;
  align-items: center;
}

.storefront-body .footer-trust-row {
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.storefront-body .payment-methods,
.storefront-body .footer-social {
  gap: 9px;
}

.storefront-body .payment-methods span,
.storefront-body .footer-social > span {
  margin-right: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  text-transform: uppercase;
}

.storefront-body .payment-methods i {
  color: var(--hc-white);
  font-size: 22px;
}

.storefront-body .footer-social .social-icon {
  color: var(--hc-white);
}

.storefront-body .footer-bottom {
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.storefront-body .footer-bottom > span:last-child {
  display: flex;
  gap: 14px;
}

.storefront-body .btn {
  background: var(--hc-green);
  color: #111111;
}

.storefront-body .btn:hover {
  background: var(--hc-leaf);
  color: #111111;
}

.storefront-body .price {
  color: var(--hc-green-dark);
}

@media (max-width: 1120px) {
  .storefront-body .header-main-inner {
    grid-template-columns: minmax(155px, 210px) minmax(240px, 1fr) auto;
    gap: 14px;
  }

  .storefront-body .header-account .account-menu > summary span,
  .storefront-body .header-account .account-arrow {
    display: none;
  }

  .storefront-body .header-account .account-menu > summary {
    width: 38px;
    padding: 0;
  }

  .storefront-body .navigation-band .nav-links > a,
  .storefront-body .navigation-band .category-menu > summary {
    padding-right: 8px;
    padding-left: 8px;
  }

  .storefront-body .footer-grid {
    grid-template-columns: 1.4fr repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 920px) {
  .storefront-body .site-header {
    position: relative;
  }

  .storefront-body .header-main-inner {
    grid-template-columns: minmax(130px, 1fr) auto;
    gap: 8px 12px;
    min-height: 64px;
    padding: 7px 0 9px;
  }

  .storefront-body .header-search {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
  }

  .storefront-body .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .storefront-body .navigation-band {
    display: none;
  }

  .storefront-body .menu-btn {
    display: inline-flex;
    cursor: pointer;
  }

  .storefront-body .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(17, 17, 17, 0.58);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .storefront-body .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1110;
    display: block;
    width: min(360px, 88vw);
    overflow-y: auto;
    padding-bottom: 20px;
    background: var(--hc-white);
    box-shadow: -16px 0 38px rgba(17, 17, 17, 0.24);
    transform: translateX(105%);
    transition: transform 0.25s ease;
  }

  .storefront-body .menu-toggle:checked ~ .mobile-menu-backdrop {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .storefront-body .menu-toggle:checked ~ .mobile-drawer {
    transform: translateX(0);
  }

  .storefront-body .mobile-drawer-head {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 9px 14px;
    border-bottom: 3px solid var(--hc-green);
    background: #111111;
    color: var(--hc-white);
    font-size: 13px;
    font-weight: 600;
  }

  .storefront-body .mobile-close {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 5px;
    background: var(--hc-green);
    color: #111111;
    cursor: pointer;
  }

  .storefront-body .mobile-menu-section {
    padding: 12px 14px;
    border-bottom: 1px solid var(--hc-border);
  }

  .storefront-body .mobile-menu-section h3 {
    margin: 0 0 8px;
    color: #171717;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .storefront-body .mobile-category-list .category-menu,
  .storefront-body .mobile-category-list .category-dropdown,
  .storefront-body .mobile-category-list .nested-menu,
  .storefront-body .mobile-account-links .account-menu,
  .storefront-body .mobile-account-links .account-popover {
    position: static;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .storefront-body .mobile-category-list .category-menu > summary,
  .storefront-body .mobile-account-links .account-menu > summary {
    display: none;
  }

  .storefront-body .mobile-category-list .category-dropdown {
    display: grid;
    gap: 3px;
  }

  .storefront-body .mobile-category-list .nested-menu summary,
  .storefront-body .mobile-category-list .nested-menu a,
  .storefront-body .mobile-account-links .account-popover a,
  .storefront-body .mobile-store-links > a {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 8px;
    border-radius: 5px;
    color: #303030;
    font-size: 14px;
    font-weight: 500;
  }

  .storefront-body .mobile-category-list .nested-menu summary {
    justify-content: space-between;
    background: var(--hc-soft);
    color: #171717;
  }

  .storefront-body .mobile-category-list .nested-menu a {
    min-height: 32px;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 2px solid var(--hc-border);
    border-radius: 0 5px 5px 0;
  }

  .storefront-body .mobile-account-links .account-popover a {
    gap: 9px;
  }

  .storefront-body .mobile-account-links .account-popover a > i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 5px;
    background: var(--hc-soft);
    color: var(--hc-green-dark);
  }

  .storefront-body .mobile-account-links .account-popover strong,
  .storefront-body .mobile-account-links .account-popover small {
    display: block;
  }

  .storefront-body .mobile-account-links .account-popover strong {
    font-size: 11px;
    font-weight: 600;
  }

  .storefront-body .mobile-account-links .account-popover small {
    color: var(--hc-muted);
    font-size: 9px;
  }

  .storefront-body .mobile-store-links > a {
    gap: 9px;
  }

  .storefront-body .mobile-store-links > a i {
    width: 18px;
    color: var(--hc-green-dark);
    text-align: center;
  }

  .storefront-body .mobile-store-links > a span {
    min-width: 20px;
    margin-left: auto;
    padding: 2px 6px;
    border-radius: 10px;
    background: var(--hc-soft);
    color: var(--hc-green-dark);
    font-size: 9px;
    text-align: center;
  }

  .storefront-body .mobile-contact-links .top-left {
    display: grid;
    gap: 7px;
  }

  .storefront-body .mobile-contact-links .top-left span,
  .storefront-body .mobile-contact-links .top-left a {
    color: var(--hc-muted);
    font-size: 11px;
  }

  .storefront-body .mobile-contact-links .top-left i {
    width: 16px;
    color: var(--hc-green-dark);
  }
}

@media (max-width: 640px) {
  .storefront-body .top-bar-inner {
    min-height: 30px;
  }

  .storefront-body .top-right,
  .storefront-body .top-left span:nth-child(n+2) {
    display: none;
  }

  .storefront-body .top-left {
    width: 100%;
    justify-content: center;
    font-size: 10px;
  }

  .storefront-body .brand-logo {
    height: 46px;
    max-width: 150px;
  }

  .storefront-body .header-account {
    display: none;
  }

  .storefront-body .header-actions {
    gap: 5px;
  }

  .storefront-body .header-action,
  .storefront-body .menu-btn {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .storefront-body .header-search {
    min-height: 40px;
  }

  .storefront-body .header-search input[type="search"] {
    min-width: 0;
    font-size: 11px;
  }

  .storefront-body .footer {
    padding-top: 26px;
  }

  .storefront-body .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .storefront-body .footer-company,
  .storefront-body .footer-newsletter {
    grid-column: 1 / -1;
  }

  .storefront-body .footer-trust-row,
  .storefront-body .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .storefront-body .footer-social {
    display: none;
  }
}

@media (max-width: 390px) {
  .storefront-body .brand-logo {
    max-width: 128px;
  }

  .storefront-body .header-action,
  .storefront-body .menu-btn {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .storefront-body .footer-grid {
    grid-template-columns: 1fr;
  }

  .storefront-body .footer-company,
  .storefront-body .footer-newsletter {
    grid-column: auto;
  }
}
/* End COSI One Plus logo palette storefront shell */

/* Footer visibility and COSI theme correction */
body.storefront-body footer.footer {
  position: relative;
  z-index: 1;
  display: block;
  clear: both;
  width: 100%;
  min-height: 260px;
  margin: 30px 0 0;
  padding: 38px 0 0;
  overflow: visible;
  border: 0;
  background: #111111;
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
  visibility: visible;
  isolation: isolate;
}

body.storefront-body footer.footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--hc-green);
  content: "";
}

body.storefront-body footer.footer > .container {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 200px;
  opacity: 1;
  visibility: visible;
}

body.storefront-body footer.footer .footer-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(220px, 1.45fr) repeat(4, minmax(130px, 1fr));
  align-items: start;
  gap: 30px;
  margin: 0;
  padding: 0;
  opacity: 1;
  visibility: visible;
}

body.storefront-body footer.footer .footer-grid > div {
  display: block;
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
  visibility: visible;
}

body.storefront-body footer.footer h4 {
  position: relative;
  display: block;
  margin: 0 0 14px;
  padding: 0 0 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

body.storefront-body footer.footer h4::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--hc-green);
  content: "";
}

body.storefront-body footer.footer p,
body.storefront-body footer.footer a,
body.storefront-body footer.footer span,
body.storefront-body footer.footer small {
  opacity: 1;
  visibility: visible;
}

body.storefront-body footer.footer p,
body.storefront-body footer.footer a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

body.storefront-body footer.footer p {
  margin: 0 0 7px;
}

body.storefront-body footer.footer .footer-grid > div:not(.footer-company):not(.footer-newsletter) > a {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 25px;
  margin: 0 0 4px;
}

body.storefront-body footer.footer a:hover {
  color: var(--hc-leaf);
}

body.storefront-body footer.footer .footer-contact-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
}

body.storefront-body footer.footer .footer-contact-line i {
  padding-top: 6px;
  color: var(--hc-leaf);
}

body.storefront-body footer.footer .footer-newsletter {
  max-width: 310px;
}

body.storefront-body footer.footer .newsletter-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  width: 100%;
  min-height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

body.storefront-body footer.footer .newsletter-field input[type="email"] {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 8px 10px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  box-shadow: none;
}

body.storefront-body footer.footer .newsletter-field button {
  display: grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  border: 0;
  background: var(--hc-green);
  color: #111111;
}

body.storefront-body footer.footer .footer-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 28px 0 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 1;
  visibility: visible;
}

body.storefront-body footer.footer .payment-methods,
body.storefront-body footer.footer .footer-social,
body.storefront-body footer.footer .footer-social .social-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

body.storefront-body footer.footer .payment-methods i {
  color: #ffffff;
  font-size: 22px;
}

body.storefront-body footer.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1100px) {
  body.storefront-body footer.footer .footer-grid {
    grid-template-columns: minmax(220px, 1.35fr) repeat(2, minmax(160px, 1fr));
    gap: 26px 22px;
  }
}

@media (max-width: 720px) {
  body.storefront-body footer.footer {
    min-height: 0;
    padding-top: 32px;
  }

  body.storefront-body footer.footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  body.storefront-body footer.footer .footer-company,
  body.storefront-body footer.footer .footer-newsletter {
    grid-column: 1 / -1;
    max-width: none;
  }

  body.storefront-body footer.footer .footer-trust-row,
  body.storefront-body footer.footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  body.storefront-body footer.footer .footer-grid {
    grid-template-columns: 1fr;
  }

  body.storefront-body footer.footer .footer-company,
  body.storefront-body footer.footer .footer-newsletter {
    grid-column: auto;
  }

  body.storefront-body footer.footer .footer-social {
    display: none;
  }
}
/* End footer visibility and COSI theme correction */
