@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

:root {
  --bg: #f7fbf8;
  --surface: #ffffff;
  --ink: #1d2e29;
  --muted: #4f655d;
  --brand: #0b6b44;
  --brand-soft: #ddefe6;
  --accent: #1f3f6e;
  --line: #d7e8df;
  --radius: 20px;
  --shadow: 0 18px 42px rgba(14, 62, 46, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-anchor: none;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 680px at 10% -10%, rgba(15, 190, 128, 0.18), transparent 56%),
    radial-gradient(980px 600px at 95% 8%, rgba(38, 127, 220, 0.12), transparent 60%),
    linear-gradient(180deg, #f4faf7 0%, #f7fbff 42%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Global type override requested: use Roboto across the full site. */
body,
body * {
  font-family: "Roboto", sans-serif !important;
}

/* Splash screen */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.splash-screen img {
  width: 280px;
  height: 280px;
  object-fit: contain;
}

h1,
h2,
h3,
h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.2;
  margin: 0 0 0.65rem;
}

h4 {
  color: #0f6f4a;
}

p,
ul {
  margin: 0 0 1rem;
}

/* Keep paragraph content consistently aligned across all public pages. */
main p {
  text-align: justify !important;
  text-justify: inter-word;
}

.container {
  width: min(1600px, 98vw);
  margin: 0 auto;
}

.bg-orb,
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(11, 107, 68, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 107, 68, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.14;
}

.bg-orb {
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(18px);
  mix-blend-mode: multiply;
}

.orb-1 {
  top: -220px;
  left: -170px;
  background:
    radial-gradient(circle at 28% 32%, rgba(12, 172, 116, 0.48), rgba(12, 172, 116, 0.12) 45%, transparent 72%),
    radial-gradient(circle at 70% 72%, rgba(35, 145, 215, 0.26), transparent 68%);
}

.orb-2 {
  top: -160px;
  right: -210px;
  background:
    radial-gradient(circle at 48% 36%, rgba(30, 118, 218, 0.34), rgba(30, 118, 218, 0.1) 48%, transparent 74%),
    radial-gradient(circle at 22% 76%, rgba(0, 175, 144, 0.24), transparent 66%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(11, 107, 68, 0.14);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.88);
}

.top-strip {
  display: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(90deg, #0b6b44, #0f8757);
}

.top-strip-wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-call,
.top-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 400;
}

.top-links {
  display: flex;
  align-items: center;
}

.top-links a + a {
  margin-left: 0.95rem;
  padding-left: 0.95rem;
  border-left: 1px solid #cbcbcb;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1.25rem;
  position: relative;
  margin-top: 0;
  margin-bottom: 0.45rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 83, 64, 0.08);
  box-shadow: 0 12px 26px rgba(9, 51, 39, 0.08);
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 130px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f2736;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(140deg, var(--brand), #17a163);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.77rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  margin-left: auto;
}

.main-nav a {
  text-decoration: none;
  color: #1f3444;
  font-weight: 600;
  font-size: 1.03rem;
}

.main-nav a:hover {
  color: var(--brand);
}

.main-nav a.active {
  color: var(--brand);
}

.nav-caret {
  margin-left: 0.28rem;
  font-size: 0.75rem;
  color: #4d4d4d;
}

/* Dropdown nav */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  color: #2A3D4C !important;
  font-weight: 600;
}

.nav-item > a:hover {
  color: var(--brand) !important;
}

.nav-item > a .nav-caret {
  color: inherit;
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

.nav-dropdown {
  display: none;
  position: fixed;
  background: #ffffff;
  min-width: 280px;
  z-index: 9999;
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  /* invisible top padding acts as bridge to prevent gap */
  padding-top: 8px;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown li {
  border-bottom: 1px solid #eeeeee;
}

.nav-dropdown li:last-child {
  border-bottom: none;
}

.dropdown-item-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-unit-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0.85;
  flex-shrink: 0;
}

.nav-dropdown li a:hover .dropdown-unit-icon {
  opacity: 1;
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.82rem 1.2rem;
  color: #2a2a2a !important;
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}

.nav-dropdown li a::after {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #cccccc;
  background: transparent;
  font-size: 0.75rem;
  color: #555555;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M3 1l4 4-4 4' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.nav-dropdown li a:hover {
  background: #f6f6f6;
  color: var(--brand) !important;
}

.nav-dropdown li a:hover::after {
  border-color: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M3 1l4 4-4 4' stroke='%230b6b44' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.nav-item:focus-within .nav-dropdown {
  display: block;
}

.nav-contact-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.8rem;
  padding: 0.78rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(92deg, #0b6b44, #0f8757);
  box-shadow: 0 10px 24px rgba(11, 107, 68, 0.28);
}

.nav-contact-btn:hover {
  background: linear-gradient(92deg, #0a5e3b, #0d744d);
}

.menu-toggle {
  display: none;
  border: 1px solid #dadada;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.48rem 0.74rem;
}

.hero {
  padding: 5.3rem 0 3.8rem;
}

.page-banner + .hero {
  padding-top: 2.2rem;
}

.page-banner {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.page-banner-track {
  display: grid;
}

.page-banner-slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.page-banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.page-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.inner-hero {
  padding: 4.6rem 0 2.2rem;
}

.inner-hero p {
  max-width: 70ch;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.9rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-stats {
  display: grid;
  gap: 1rem;
}

.hero-stats article {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(240, 250, 245, 0.9));
  border: 1px solid rgba(14, 94, 66, 0.14);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
}

.hero-stats h3 {
  margin-bottom: 0.15rem;
  color: var(--brand);
  font-size: 2rem;
}

section {
  padding: 3.6rem 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
}

.about-card,
.career-highlight {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 247, 0.9));
  border: 1px solid rgba(14, 94, 66, 0.15);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.content-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 247, 0.9));
  border: 1px solid rgba(14, 94, 66, 0.15);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.about-card ul,
.product-card ul {
  padding-left: 1.2rem;
}

.cards-grid,
.news-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card,
.news-grid article,
.testimonial-grid article {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 247, 0.9));
  border: 1px solid rgba(14, 94, 66, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.feature-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-card {
  background: #f3fbf7;
  border: 1px solid #d8ede4;
  border-radius: 14px;
  padding: 0.9rem;
  box-shadow: 0 12px 25px rgba(11, 107, 68, 0.08);
  display: grid;
  gap: 0.35rem;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0b6b44;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #0b6b44;
  font-family: "DM Serif Display", serif;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #33443a;
}

.home-unit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.board-teaser {
  background: #f3fbf7;
  border: 1px solid #d8ede4;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.board-teaser-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.board-teaser-copy p {
  margin-bottom: 1rem;
}

.board-teaser-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.board-teaser-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #d8ede4;
  background: #ffffff;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.board-teaser-visual img:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 14px 24px rgba(42, 61, 76, 0.16);
  border-color: #bcd2dd;
}

.board-teaser .btn-primary {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.board-teaser .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(42, 61, 76, 0.32);
  background: #233340;
}

.product-card a,
.news-grid a,
.text-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.news-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.contact-strip {
  padding-bottom: 4.5rem;
}

.contact-flex {
  background: linear-gradient(120deg, #0f8757, #1c5f99);
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.contact-flex h2 {
  margin-bottom: 0;
  color: #ffffff;
}

.contact-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.55rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(92deg, #0b6b44, #0f8757);
  box-shadow: 0 10px 22px rgba(11, 107, 68, 0.28);
  transition: background 0.18s ease, transform 0.18s ease;
  border: none;
}

.btn:hover {
  background: linear-gradient(92deg, #0a5e3b, #0d744d);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(92deg, #0b6b44, #0f8757);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(11, 107, 68, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(92deg, #0a5e3b, #0d744d);
}

.hero .btn-primary,
.contact-strip .btn-primary {
  background: linear-gradient(92deg, #0b6b44, #0f8757);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.faq-float-btn {
  position: fixed;
  right: 12px;
  bottom: 18px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  width: 56px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.faq-float-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.faq-float-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

#translation-widget {
  position: fixed;
  top: 96px;
  right: 16px;
  background: #ffffff;
  border: 2px solid #0066cc;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1300;
  width: 252px;
  max-width: calc(100vw - 24px);
}

#translation-widget .translator-head {
  margin: -12px -12px 10px;
  padding: 8px 10px;
  background: #2b66c0;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#translation-widget h4 {
  margin: 0;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-weight: 700;
}

#translation-widget .translator-globe {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block;
}

#translation-widget select {
  width: 100%;
  height: 34px;
  padding: 0 10px;
  border: 2px solid #202020;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 9px;
  background: #ffffff;
}

#translation-widget button {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #ffffff;
  background: #0066cc;
}

#translation-widget button:hover {
  filter: brightness(0.94);
}

#translation-widget button:disabled {
  background: #c1c1c1;
  cursor: not-allowed;
}

#translation-widget #restore-btn {
  background: #666666;
  margin-top: 4px;
}

#translation-widget .status {
  font-size: 12px;
  margin-top: 8px;
  color: #666666;
  text-align: center;
  min-height: 16px;
}

#translation-widget .close-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  width: 18px;
  height: 18px;
  line-height: 1;
}

#translation-widget .close-btn:hover {
  background: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.translation-toggle {
  position: fixed;
  right: 12px;
  bottom: 86px;
  background: transparent;
  border: none;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  z-index: 1205;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.translation-toggle-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.translation-toggle:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.site-footer {
  border-top: 1px solid rgba(11, 107, 68, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f3faf6 100%);
  padding: 2.6rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 2fr 1fr 1fr;
}

.footer-grid a {
  text-decoration: none;
  color: var(--ink);
  display: block;
  margin: 0.3rem 0;
}

.contact-form {
  display: grid;
  gap: 0.5rem;
}

.contact-form label {
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  margin-bottom: 0.45rem;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
}

.form-status.success {
  color: var(--brand);
}

.form-status.error {
  color: #a92f2f;
}

.news-list {
  display: grid;
  gap: 1rem;
}

.news-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.news-item h2,
.news-item h3 {
  margin-bottom: 0.45rem;
}

.copyright {
  text-align: center;
  margin: 1.3rem 0 0;
  color: var(--muted);
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Category Product Pages ─────────────────────────────── */

/* Category hero */
.cat-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, #f0f7f4 0%, #e6f5ee 100%);
  border-bottom: 1px solid var(--line);
}

.cat-hero-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cat-hero-icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(11,107,68,0.15));
}

.cat-hero h1 {
  margin-bottom: 0.4rem;
}

.cat-hero .eyebrow {
  margin-bottom: 0.25rem;
}

/* Product search */
.prod-search-section {
  padding: 2.5rem 0 1.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.prod-search-wrap {
  max-width: 660px;
}

.prod-search-heading {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.prod-search-wrap > p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 0.93rem;
}

.prod-search-bar {
  display: flex;
  gap: 0;
  border: 1.5px solid #c5d4cc;
  border-radius: 8px;
  overflow: hidden;
  max-width: 520px;
  background: #fff;
}

.prod-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: transparent;
  color: #2a2a2a;
}

.prod-search-bar button {
  border: none;
  background: var(--brand);
  color: #fff;
  padding: 0 1.3rem;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: serif;
}

.prod-search-bar button:hover {
  background: #0a5e3b;
}

/* A-Z filter */
.az-section {
  padding: 1.4rem 0;
  background: #f8fafb;
  border-bottom: 1px solid var(--line);
}

.az-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.az-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border: 1.5px solid #ccd8d3;
  border-radius: 6px;
  background: #fff;
  color: #444;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: inherit;
}

.az-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.az-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Product listing grid */
.prod-listing-section {
  padding: 2.5rem 0 4rem;
}

.prod-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.prod-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: row;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 160px;
}

.prod-card:hover {
  box-shadow: 0 24px 56px rgba(11,107,68,0.13);
  transform: translateY(-3px);
}

.prod-card-img {
  background: linear-gradient(135deg, #f0f7f4, #e8f4ee);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: 140px;
  min-width: 140px;
  flex-shrink: 0;
}

.prod-card-img img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  opacity: 0.9;
}

.prod-card-body {
  padding: 1.1rem 1.25rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-height: 130px;
  overflow: hidden;
}

.prod-trade-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.prod-generic {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.prod-find-more {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.prod-find-more:hover {
  color: #0a5e3b;
}


.no-results {
  display: none;
  text-align: center;
  padding: 3rem 0;
  color: #888;
  font-size: 1rem;
}

/* Product detail modal */
.prod-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 20, 0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.prod-modal-overlay.open {
  display: flex;
}

.prod-modal-box {
  background: #fff;
  border-radius: 0;
  max-width: none;
  width: 100vw;
  height: 100vh;
  max-height: none;
  overflow: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}

.prod-modal-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  margin: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--brand);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  z-index: 1;
}

.prod-modal-close:hover {
  background: var(--brand-soft);
  border-color: #b9d3c3;
}

.prod-modal-hero {
  background: linear-gradient(180deg, #e9f5ee 0%, #d3ebde 100%);
  padding: 1.7rem 2.2rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.prod-modal-hero h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--brand);
  margin-bottom: 0.2rem;
  line-height: 1.05;
}

.modal-generic {
  font-size: 1rem;
  color: var(--ink);
  margin: 0 0 0.15rem;
}

.modal-therapeutic {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

.prod-modal-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2rem 2.1rem 2.1rem;
  align-items: start;
}

.prod-modal-details {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.modal-detail-block h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.modal-detail-block p {
  font-size: 0.95rem;
  color: #2b2b2b;
  line-height: 1.7;
  margin: 0;
}

.prod-modal-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.prod-slider {
  position: relative;
  width: 380px;
  max-width: 100%;
}

.prod-slider-viewport {
  width: 380px;
  max-width: 100%;
  height: 380px;
  min-height: 380px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.prod-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.35s ease;
}

.prod-slide {
  min-width: 100%;
  height: 380px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fff;
}

.prod-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.14);
  transform-origin: center;
  display: block;
}

.prod-modal-img-wrap {
  width: 380px;
  max-width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-modal-img-wrap img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.prod-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  z-index: 1;
}

.prod-slider-btn:hover {
  background: #085235;
}

.prod-slider-btn.prev {
  left: 0.75rem;
}

.prod-slider-btn.next {
  right: 0.75rem;
}

.prod-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.prod-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #c7ddd2;
  cursor: pointer;
  padding: 0;
}

.prod-slider-dot.active {
  background: var(--brand);
}

.prod-slider.is-single .prod-slider-btn,
.prod-slider.is-single .prod-slider-dots {
  display: none;
}

.prod-prescribing-btn {
  border: none;
  border-radius: 0;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.78rem 1.4rem;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.18s ease;
}

.prod-prescribing-btn:hover {
  background: #085235;
}

.prescribing-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(168, 222, 215, 0.6);
  z-index: 2100;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
}

.prescribing-overlay.open {
  display: flex;
}

.prescribing-box {
  position: relative;
  background: rgba(168, 222, 215, 0.6);
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}

.prescribing-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2200;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.prescribing-close:hover {
  background: rgba(255,255,255,0.3);
}

.prescribing-box img {
  display: block;
  width: 100%;
  height: auto;
}

.prescribing-gallery {
  display: block;
  flex: 1;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  background: rgba(168, 222, 215, 0.6);
  padding: 0;
  gap: 0;
  --prescribing-zoom: 1;
}

.prescribing-sheet {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 222, 215, 0.6);
  border: none;
  box-shadow: none;
}

.prescribing-sheet img {
  display: block;
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.12s ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Admin dashboard */
.admin-page {
  background: linear-gradient(180deg, #f5f7fb 0%, #eef3f8 100%);
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #dde4ef;
}

.admin-image-label {
  margin-bottom: 0.4rem;
}

.admin-actions-compact {
  margin-top: 0;
}

.admin-topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #152238;
  text-decoration: none;
  font-weight: 700;
}

.admin-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.admin-brand span {
  font-size: 1.05rem;
}

.admin-back-link {
  text-decoration: none;
  font-weight: 700;
  color: #0b5fb3;
}

.admin-back-link:hover {
  color: #094c90;
}

.news-event-image {
  width: 100%;
  max-height: 360px;
  margin-bottom: 1rem;
  border-radius: 14px;
  object-fit: cover;
}

.news-empty {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #526b70;
  text-align: center;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-header-actions .admin-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.62rem 0.9rem;
  border: 1px solid #c9d8e8;
  border-radius: 10px;
  background: #f7faff;
  color: #0b5fb3;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.admin-header-actions .admin-back-link:hover {
  border-color: #8bb4dc;
  background: #eaf4ff;
  color: #094c90;
}

.admin-header-actions .approval-link {
  border-color: #0b6b44;
  background: #0b6b44;
  color: #fff;
}

.admin-header-actions .messages-link {
  border-color: #d97706;
  background: #fff7e6;
  color: #9a5700;
}

.admin-header-actions .events-link {
  border-color: #7c3aed;
  background: #f5f0ff;
  color: #6d28d9;
}

.admin-header-actions .events-link:hover {
  border-color: #8b5cf6;
  background: #ede3ff;
  color: #5b21b6;
}

.admin-header-actions .messages-link:hover {
  border-color: #f59e0b;
  background: #ffedc2;
  color: #7c4600;
}

.admin-header-actions .approval-link:hover {
  border-color: #075438;
  background: #075438;
  color: #fff;
}

.admin-header-actions .logout-link {
  border-color: #fecaca;
  background: #fff5f5;
  color: #b91c1c;
}

.admin-header-actions .logout-link:hover {
  border-color: #ef4444;
  background: #fee2e2;
  color: #991b1b;
}

.admin-wrap {
  padding: 1.5rem 0 3rem;
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.admin-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.35rem;
}

.admin-hero p {
  max-width: 70ch;
  color: #506174;
}

.admin-section-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid #cfe1d9;
  border-radius: 22px;
  background: #f7fbf9;
  box-shadow: 0 16px 38px rgba(12, 74, 52, 0.09);
}

.admin-section-nav a {
  position: relative;
  min-width: 0;
  min-height: 118px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid #d7e2ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(12, 74, 52, 0.05);
  color: #21364a;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-section-nav a:hover {
  transform: translateY(-3px);
  border-color: #63a889;
  box-shadow: 0 14px 28px rgba(12, 74, 52, 0.13);
}

.admin-section-nav a.active {
  border-color: #0b6b44;
  background: linear-gradient(145deg, #0b7650, #07583a);
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 107, 68, 0.25);
}

.admin-section-nav a.active small {
  color: rgba(255, 255, 255, 0.78);
}

.admin-section-nav a.active span {
  background: #fff;
  color: #0b6b44;
}

.admin-section-nav a span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-bottom: 0.38rem;
  place-items: center;
  border-radius: 10px;
  background: #0b6b44;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-section-nav a strong,
.admin-section-nav a small {
  display: block;
}

.admin-readonly-note { margin:.6rem 0 0; padding:.55rem .75rem; border-radius:9px; background:#fff3cd; color:#765a00; font-size:.86rem; font-weight:800; }
.admin-viewer .admin-panel button,.admin-viewer .admin-panel textarea,.admin-viewer .admin-panel select,.admin-viewer .admin-panel input:not(.admin-search){pointer-events:none;opacity:.55}.admin-viewer .admin-file-btn{pointer-events:none;opacity:.55}

.admin-section-nav a strong {
  margin-bottom: 0.22rem;
  font-size: 0.96rem;
}

.admin-section-nav a small {
  color: #6a7b8c;
  font-size: 0.78rem;
}

@media (max-width: 1200px) {
  .admin-section-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .admin-section-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0.75rem; }
  .admin-section-nav a { min-height: 105px; }
}

@media (max-width: 460px) {
  .admin-section-nav { grid-template-columns: 1fr; }
}

.admin-single-section-view .admin-layout > .admin-panel,
.admin-single-section-view .admin-home-panel {
  display: none;
}

.admin-single-section-view.section-business-units #business-units,
.admin-single-section-view.section-product-catalog #product-catalog,
.admin-single-section-view.section-product-editor #product-editor,
.admin-single-section-view.section-homepage-products #homepage-products {
  display: block;
}

.admin-single-section-view.section-catalog-manager #business-units,
.admin-single-section-view.section-catalog-manager #product-catalog,
.admin-single-section-view.section-catalog-manager #product-editor {
  display: block;
}

.admin-view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid #d7e2ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(18, 44, 75, 0.06);
}

.admin-view-header span {
  display: block;
  margin-bottom: 0.22rem;
  color: #6a7b8c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-view-header h2 {
  margin: 0;
  color: #152238;
  font-size: 1.25rem;
}

.admin-view-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.admin-manager-frame {
  display: block;
  width: 100%;
  min-height: 920px;
  margin-bottom: 1rem;
  border: 1px solid #d7e2ec;
  border-radius: 18px;
  background: #f3f8f5;
}

.admin-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.admin-single-section-view.section-catalog-manager .admin-layout {
  grid-template-columns: minmax(0, 1fr) 420px;
}

.admin-single-section-view.section-catalog-manager #business-units {
  grid-column: 1 / -1;
}

.admin-single-section-view.section-catalog-manager #product-catalog {
  grid-column: 1;
}

.admin-single-section-view.section-catalog-manager #product-editor {
  grid-column: 2;
}

.admin-serial-section {
  scroll-margin-top: 96px;
}

.admin-panel-header > div:first-child {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.admin-section-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  background: #0b5fb3;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-section-top {
  color: #0b5fb3;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.admin-panel {
  background: #fff;
  border: 1px solid #dce4ef;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(18, 44, 75, 0.08);
  overflow: hidden;
}

.admin-panel-header {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #e5ebf3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.admin-panel-header h2,
.admin-panel-header h3 {
  margin: 0;
  font-size: 1.05rem;
}

.admin-panel-body {
  padding: 1rem 1.15rem 1.15rem;
}

.admin-units {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

#business-units .admin-actions {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-unit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border: 1px solid #d8e0ea;
  background: #f9fbff;
  color: #233244;
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

#business-units .admin-unit-btn,
#business-units .admin-action-btn,
#business-units .admin-file-btn {
  min-height: 52px;
  line-height: 1.25;
}

.admin-unit-btn small {
  color: #708197;
  font-weight: 600;
}

.admin-unit-btn.active {
  background: #0b5fb3;
  color: #fff;
  border-color: #0b5fb3;
}

.admin-unit-btn.active small {
  color: rgba(255, 255, 255, 0.82);
}

.admin-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.admin-action-btn,
.admin-file-btn {
  width: 100%;
  border: 1px solid #d8e0ea;
  background: #fff;
  color: #233244;
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.admin-action-btn.primary {
  background: #0b5fb3;
  color: #fff;
  border-color: #0b5fb3;
}

.admin-action-btn.danger {
  background: #fff4f4;
  color: #b3261e;
  border-color: #ffd1d1;
}

.admin-file-btn input {
  display: none;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.admin-metric {
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  padding: 0.9rem 1rem;
}

.admin-metric span {
  display: block;
  font-size: 0.8rem;
  color: #6a7a8d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.admin-metric strong {
  font-size: 1.2rem;
  color: #152238;
}

.admin-search {
  width: 100%;
  border: 1px solid #d8e0ea;
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  font-family: inherit;
  margin-bottom: 0.9rem;
}

.admin-catalog-list {
  display: grid;
  gap: 0.7rem;
  max-height: 68vh;
  overflow: auto;
  padding-right: 0.2rem;
}

.admin-catalog-item {
  border: 1px solid #dde4ef;
  background: #fff;
  border-radius: 16px;
  padding: 0.85rem;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.admin-catalog-item.active {
  border-color: #0b5fb3;
  box-shadow: 0 0 0 3px rgba(11, 95, 179, 0.08);
}

.admin-catalog-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #f1f5fb;
  border: 1px solid #e1e7f0;
  object-fit: contain;
}

.admin-catalog-title {
  margin: 0 0 0.18rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: #152238;
}

.admin-catalog-subtitle {
  margin: 0;
  font-size: 0.82rem;
  color: #647385;
}

.admin-item-actions {
  display: flex;
  gap: 0.35rem;
}

.admin-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #d8e0ea;
  background: #fff;
  cursor: pointer;
  font-size: 0.95rem;
}

.admin-icon-btn.delete {
  color: #b3261e;
}

.admin-form {
  display: grid;
  gap: 0.9rem;
}

.admin-field {
  display: grid;
  gap: 0.42rem;
}

.admin-field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #3a4a5c;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  border: 1px solid #d8e0ea;
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: #152238;
}

.admin-field textarea {
  min-height: 88px;
  resize: vertical;
}

.admin-help {
  font-size: 0.82rem;
  color: #667788;
}

.admin-image-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  border: 1px dashed #c7d1df;
  border-radius: 16px;
  padding: 0.95rem;
  background: #fbfcfe;
}

.admin-image-group + .admin-image-group {
  margin-top: 0;
}

.admin-image-picker input[type="file"] {
  width: 100%;
}

.admin-image-previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.admin-image-previews.single {
  grid-template-columns: 1fr;
}

.admin-image-chip {
  position: relative;
  border: 1px solid #dde4ef;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.admin-image-chip img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.admin-image-remove {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  cursor: pointer;
}

.admin-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: #53657a;
}

.admin-status.success {
  color: #0a7a46;
}

.admin-status.error {
  color: #b3261e;
}

.admin-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: #7a8796;
  border: 1px dashed #d4dce8;
  border-radius: 16px;
  background: #fafcfe;
}

.admin-empty-grid {
  grid-column: 1 / -1;
}

.admin-home-panel {
  margin-top: 1rem;
}

.admin-home-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.admin-home-list-wrap {
  display: grid;
  gap: 0.7rem;
}

.admin-home-subtitle {
  margin: 0 0 0.45rem;
  font-size: 0.94rem;
  color: #3a4a5c;
}

.admin-home-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.admin-home-list-head h4 {
  margin: 0;
  font-size: 1rem;
}

.admin-subheader {
  padding: 0;
  border: none;
  margin-bottom: 0.2rem;
}

.admin-home-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (max-width: 980px) {
  .container {
    width: min(1600px, 92vw);
  }

  .hero-grid,
  .split-grid,
  .cards-grid,
  .news-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-unit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .board-teaser-wrap {
    grid-template-columns: 1fr;
  }

  .feature-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-wrap {
    min-height: 66px;
    gap: 0.5rem;
  }

  .main-nav {
    position: absolute;
    top: 62px;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    padding: 0.8rem;
    display: none;
    width: min(280px, 88vw);
    margin-left: 0;
    gap: 0.85rem;
  }

  .top-strip-wrap {
    min-height: 34px;
  }

  .top-call,
  .top-links a {
    font-size: 0.8rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 100px;
    max-height: 40px;
  }

  .brand-text {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-contact-btn {
    margin-left: 0;
    padding: 0.54rem 0.82rem;
    font-size: 0.88rem;
    box-shadow: none;
  }

  .faq-float-btn {
    right: 12px;
    bottom: 18px;
    min-width: 56px;
    height: 56px;
    width: 56px;
    padding: 0;
  }

  .faq-float-icon {
    width: 36px;
    height: 36px;
  }

  #translation-widget {
    right: 8px;
    top: 78px;
    width: 238px;
    max-width: calc(100vw - 16px);
    padding: 11px;
  }

  #translation-widget .translator-head {
    margin: -11px -11px 9px;
    padding: 7px 9px;
  }

  #translation-widget h4 {
    font-size: 13px;
  }

  #translation-widget select {
    font-size: 13px;
    height: 33px;
  }

  #translation-widget button {
    font-size: 13px;
    height: 34px;
  }

  .translation-toggle {
    right: 12px;
    bottom: 86px;
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .translation-toggle-icon {
    width: 36px;
    height: 36px;
  }

.contact-form button {
    width: fit-content;
  }

  .main-nav.open {
    display: flex;
  }

  /* Mobile dropdown */
  .nav-item {
    width: 100%;
  }

  .nav-item > a {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    min-width: 100%;
    display: none;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 0.3rem;
    box-shadow: none;
    border: 1px solid #eeeeee;
  }

  .nav-dropdown li a {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .nav-item.open .nav-dropdown {
    display: block;
  }

  .contact-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-single-section-view.section-catalog-manager .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-single-section-view.section-catalog-manager #business-units,
  .admin-single-section-view.section-catalog-manager #product-catalog,
  .admin-single-section-view.section-catalog-manager #product-editor {
    grid-column: 1;
  }

  .admin-section-nav {
    position: static;
  }

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

  #business-units .admin-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-topbar-inner {
    min-height: 0;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .admin-header-actions {
    gap: 0.45rem;
  }

  .admin-header-actions .admin-back-link {
    min-height: 36px;
    padding: 0.55rem 0.7rem;
    font-size: 0.86rem;
  }

  .admin-home-grid {
    grid-template-columns: 1fr;
  }

  .admin-home-link-grid {
    grid-template-columns: 1fr;
  }

  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .admin-image-picker {
    grid-template-columns: 1fr;
  }

  .admin-image-previews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-catalog-list {
    max-height: none;
  }
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

  @media (max-width: 780px) {
    .prod-listing-grid {
      grid-template-columns: 1fr;
    }

    .cat-hero-inner {
      flex-direction: column;
      text-align: center;
    }

    .prod-modal-body {
      grid-template-columns: 1fr;
    }

    .prod-modal-media {
      order: -1;
    }

    .prod-modal-img-wrap {
      width: 100%;
      height: 280px;
      min-height: 280px;
    }

    .prod-slider-viewport,
    .prod-slide {
      width: 100%;
      height: 280px;
      min-height: 280px;
    }

    .prod-modal-img-wrap img {
      width: 100%;
      max-width: 100%;
      height: 100%;
      max-height: 100%;
    }

    .prod-slide img {
      transform: scale(1.06);
    }

    .prod-modal-box {
      height: 100vh;
    }
  }

  @media (max-width: 480px) {
    .admin-view-header {
      align-items: stretch;
      flex-direction: column;
    }

    .admin-view-actions {
      align-items: stretch;
      flex-direction: column;
    }

    .admin-section-nav,
    .admin-units,
    #business-units .admin-actions {
      grid-template-columns: 1fr;
    }

    .admin-section-nav a {
      min-width: 132px;
      min-height: 78px;
    }

    .admin-topbar-inner {
      align-items: stretch;
      flex-direction: column;
    }

    .admin-brand {
      justify-content: center;
    }

    .admin-header-actions {
      display: grid;
      grid-template-columns: 1fr;
      width: 100%;
    }

    .admin-header-actions .approval-link {
      grid-column: auto;
      grid-row: auto;
    }

    .prod-listing-grid {
      grid-template-columns: 1fr;
    }

    .az-btn {
      min-width: 30px;
      height: 30px;
      font-size: 0.8rem;
    }

    .feature-highlights {
      grid-template-columns: 1fr;
    }

    .home-unit-grid {
      grid-template-columns: 1fr;
    }

    .board-teaser-visual {
      grid-template-columns: 1fr;
    }
  }
