:root {
  /* Paleta de Cores - Tema Claro e Industrial */
  --c-primary: #0056b3; /* Azul Indústria Sólido */
  --c-primary-hover: #004494;
  --c-secondary: #f1f5f9; /* Cinza Gelo */
  --c-secondary-text: #334155;
  --c-accent: #f59e0b; /* Laranja/Amarelo para CTAs de conversão */
  
  --c-bg: #ffffff;
  --c-bg-alt: #f8fafc; /* Fundo alternativo para seções */
  --c-surface: #ffffff;
  --c-border: #e2e8f0;
  
  --c-text: #1e293b; /* Texto principal quase preto */
  --c-text-muted: #64748b;
  
  --header-height: 64px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
}
html, body { height: 100%; }
body { min-height: 100vh; min-height: 100dvh; }
.main { display: block; }

a { color: inherit; transition: 0.2s; }
img { max-width: 100%; display: block; }

/* Utilitários */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Skip Link */
.skip {
  position: absolute;
  top: -9999px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 700;
}
.skip:focus { top: 0; }

/* Topbar */
.topbar {
  background: var(--c-secondary);
  border-bottom: 1px solid var(--c-border);
  font-size: 13px;
  padding: 8px 0;
  color: var(--c-text-muted);
}
.topbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar__contact { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.topbar__langs { display: flex; gap: 8px; }
.topbar__langs-buttons { display: flex; gap: 8px; }
.topbar__langdd { display: none; }
.topbar__lang { 
  background: none; 
  border: none; 
  cursor: pointer; 
  font-size: 16px; 
  font-weight: 700; 
  color: var(--c-text-muted); 
  padding: 0;
  line-height: 1;
}
.topbar__lang:hover, .topbar__lang.active { color: var(--c-primary); }

/* Header */
.header {
  height: 64px;
  min-height: 64px;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1002;
  box-shadow: var(--shadow-sm);
}
.header__row {
  display: flex;
  align-items: center;
  height: 64px;
  min-height: 64px;
  justify-content: space-between;
  padding: 0 16px; /* Padding vertical zero */
}
.header__row > div { height: 100%; display: flex; align-items: center; }
.brand { height: 100%; }
.header__search {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  flex: 0 1 380px;
  max-width: 380px;
  margin: 0 16px;
}
.search-input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 12px;
  line-height: 40px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-size: 14px;
}
.search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-primary);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
}
.search-dropdown {
  display: none;
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 1200;
  max-height: 60vh;
  overflow: auto;
}
.search-dropdown.open { display: block; }
.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--c-border);
}
.search-thumb {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #94a3b8;
}
.search-title { font-weight: 700; font-size: 14px; color: #0f172a; }
.search-cat { font-size: 12px; color: var(--c-text-muted); }
.brand { font-size: 24px; font-weight: 800; color: var(--c-primary); text-decoration: none; display: flex; align-items: center; gap: 10px; line-height: 1; }
.brand__logo { max-height: 40px; height: auto; width: auto; display: block; object-fit: contain; }
.brand span { color: var(--c-text); }

.nav { display: flex; gap: 32px; align-items: center; }
.header .btn { padding: 8px 14px; font-size: 14px; }
.nav__link { 
  font-weight: 600; 
  color: var(--c-text-muted); 
  text-decoration: none; 
  font-size: 15px;
}
.nav__link:hover { color: var(--c-primary); }

.header__actions { display: flex; gap: 16px; align-items: center; }
.header__auth { display: flex; align-items: center; gap: 12px; margin-left: 20px; padding-left: 20px; border-left: 1px solid var(--c-border); }
.header__auth-user { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--c-text); }
.header__avatar { width: 32px; height: 32px; background: var(--c-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }

/* Admin tweaks */
.layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.section__title { font-size: 22px; font-weight: 800; color: #0f172a; margin: 0 0 8px; }
.badge { display: inline-block; padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight: 700; background: #e2e8f0; color: #334155; }
.badge--primary { background: rgba(56,189,248,0.15); color: #0284c7; }
body.is-admin .container { max-width: 1600px; width: 100%; padding-left: 16px; padding-right: 16px; }
body.is-admin .sidebar-layout { grid-template-columns: 300px minmax(0, 1fr); gap: 24px; }
body.is-admin .sidebar-layout > aside { position: sticky; top: calc(var(--header-height) + 20px); align-self: start; }
body.is-admin .seo-layout { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 24px; align-items: start; }
body.is-admin .seo-preview { position: sticky; top: calc(var(--header-height) + 20px); align-self: start; }
.btn--secondary.active { border-color: var(--c-primary); color: var(--c-primary); background: rgba(56,189,248,0.08); }

@media (max-width: 1024px) {
  body.is-admin .seo-layout { grid-template-columns: 1fr; }
  body.is-admin .seo-preview { position: static; }
}

/* Tables (admin) */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 10px 12px; border-bottom: 1px solid var(--c-border); text-align: left; vertical-align: middle; }
.table thead th { font-size: 13px; text-transform: uppercase; letter-spacing: .02em; color: var(--c-text-muted); }
.table tbody tr:hover { background: var(--c-bg-alt); }
.table .btn { padding: 6px 12px; font-size: 12px; }
.table td form { display: inline-block; margin: 0; vertical-align: middle; }
.table td select { font-size: 12px; padding: 4px 6px; height: auto; }

/* Buttons polish for dense layouts */
.btn { line-height: 1.2; }
.btn--sm { padding: 6px 12px; font-size: 12px; }

/* Brand logo sizing (final) */
.brand__logo { max-height: 40px; height: auto; width: auto; display: block; }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary { background: #fff; border-color: var(--c-border); color: var(--c-text); }
.btn--secondary:hover { border-color: var(--c-text-muted); background: var(--c-bg-alt); }
.btn--accent { background: var(--c-accent); color: #fff; }
.btn--accent:hover { filter: brightness(1.1); }
.btn--sm { padding: 6px 16px; font-size: 13px; }
.btn--full { width: 100%; }
.btn--text { background: transparent; color: var(--c-text-muted); padding: 0; }
.btn--text:hover { color: var(--c-primary); }

/* Layouts e Paineis */
.panel {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.panel-title { font-weight: 700; color: var(--c-text); margin-bottom: 16px; display: block; font-size: 18px; }

.form label { display: block; margin-bottom: 16px; font-weight: 500; font-size: 14px; color: var(--c-text-muted); }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  margin-top: 6px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--c-text);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.sidebar-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}
.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #f8fafc 50%, #f1f5f9 50%);
  min-height: 480px;
  padding: 0;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  position: relative;
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero__content { max-width: 600px; }
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--c-primary);
  font-size: 14px;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}
.hero__title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 24px;
}
.hero__text {
  font-size: 18px;
  color: var(--c-text-muted);
  margin: 0 0 32px;
}
.hero__image {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border: 1px solid var(--c-border);
}
.hero--bg {
  background-image: var(--hero-bg, linear-gradient(to right, #0b1b3a 0%, #0056b3 50%, #0b1b3a 100%));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 35%;
}
.hero--bg .hero__container { grid-template-columns: 1fr; }
.hero--bg .hero__image { display: none; }
.hero--bg .hero__kicker { color: rgba(255,255,255,0.92); }
.hero--bg .hero__title { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.35); }
.hero--bg .hero__text { color: rgba(255,255,255,0.86); text-shadow: 0 2px 10px rgba(0,0,0,0.25); }
.hero--bg .hero__meta { color: rgba(255,255,255,0.82); }
.hero--bg:not(.hero--carousel)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(0, 86, 179, 0.38) 45%,
    rgba(15, 23, 42, 0.55) 100%
  );
}
.hero--bg:not(.hero--carousel) > * { position: relative; z-index: 1; }
.hero--carousel .hero-carousel { position: relative; width: 100%; }
.hero--carousel .hero-slide { display: none; min-height: 480px; }
.hero--carousel .hero-slide.is-active { display: flex; align-items: center; }
.hero--carousel .hero-dots { position: absolute; left: 0; right: 0; bottom: 24px; margin-top: 0; z-index: 2; }
.hero--product-slider { background: #0f172a; }
.hero--bg.hero--carousel:not(.hero--product-slider) .hero-slide {
  position: relative;
  background-image: var(--hero-slide-bg, linear-gradient(to right, #0b1b3a 0%, #0056b3 50%, #0b1b3a 100%));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 35%;
}
.hero--bg.hero--carousel:not(.hero--product-slider) .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(0, 86, 179, 0.38) 45%,
    rgba(15, 23, 42, 0.55) 100%
  );
}
.hero--bg.hero--carousel:not(.hero--product-slider) .hero__container { position: relative; z-index: 1; }
.hero--product-slider .hero-slide {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-image: var(--hero-slide-bg, none);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
.hero--product-slider.hero--carousel .hero-slide { display: none; }
.hero--product-slider.hero--carousel .hero-slide.is-active { display: flex; }
.hero--product-slider .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(0, 86, 179, 0.38) 45%,
    rgba(15, 23, 42, 0.55) 100%
  );
}
.hero--product-slider .hero__container { position: relative; z-index: 1; }
.hero--product-slider .hero__title { color: #fff; }
.hero--product-slider .hero__text { color: rgba(255,255,255,0.85); }
.hero--product-slider .hero__kicker { color: rgba(255,255,255,0.92); }
.hero--product-slider .hero__title { text-shadow: 0 2px 10px rgba(0,0,0,0.35); }
.hero--product-slider .hero__text { text-shadow: 0 2px 10px rgba(0,0,0,0.25); }
.hero--product-slider .hero__meta {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  margin: -10px 0 18px;
}
.hero--product-slider .hero__image { display: none; }
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  gap: 8px;
  margin-top: 18px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  opacity: 0.65;
  cursor: pointer;
}
.hero-dot.is-active {
  opacity: 1;
  background: var(--c-primary);
  border-color: var(--c-primary);
}

/* Mini Hero (Page Hero) */
.page-hero {
  background-color: var(--c-primary); /* Fallback */
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  height: 180px;
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 40px;
}
.page-hero__title {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.page-hero__subtitle {
  font-size: 16px;
  color: #cbd5e1;
  margin-top: 8px;
  max-width: 600px;
}

/* Categorias */
.section-cats { padding: 60px 0; background: #fff; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
}
.cat-card:hover { border-color: var(--c-primary); transform: translateY(-3px); }
.cat-icon { font-size: 32px; margin-bottom: 16px; display: block; color: var(--c-primary); }
.cat-icon img { width: 52px; height: 52px; object-fit: cover; border-radius: 12px; border: 1px solid var(--c-border); background: #fff; display: inline-block; }
.cat-title { font-weight: 700; color: var(--c-text); display: block; }

/* Vitrine de Produtos */
.section-products { padding: 80px 0; background: var(--c-bg-alt); }
.section-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: end; 
  margin-bottom: 40px; 
}
.section-title { font-size: 32px; font-weight: 800; margin: 0; color: #0f172a; }
.section-subtitle { color: var(--c-text-muted); margin-top: 8px; font-size: 16px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.flash-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.flash-grid .product-img-wrapper { height: 160px; }
.flash-grid .product-title {
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.flash-grid .product-cat { font-size: 12px; }
.flash-grid .product-price { font-size: 14px; }
.product-card--opportunity { border-color: #bae6fd; }
.product-card--opportunity:hover { border-color: #7dd3fc; }
.product-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card.is-clickable { cursor: pointer; }
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: #cbd5e1;
}
.product-img-wrapper {
  height: 220px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder {
  color: #94a3b8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.product-tag--new { background: var(--c-primary); }
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 12px; color: var(--c-text-muted); text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
.product-title { font-size: 18px; font-weight: 700; margin: 0 0 8px; line-height: 1.4; color: #0f172a; }
.product-desc { font-size: 14px; color: #64748b; margin-bottom: 16px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-meta { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--c-border); display: flex; align-items: center; justify-content: space-between; }
.product-price { font-weight: 700; color: var(--c-primary); font-size: 18px; }
.product-price--consult { font-size: 14px; color: var(--c-text-muted); font-weight: 600; }
.header-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--c-text);
  font-size: 16px;
  line-height: 1;
}
.header-icon-btn:active { transform: scale(0.98); }

/* Banner Institucional */
.banner {
  background: linear-gradient(135deg, var(--c-primary) 0%, #1e88e5 60%, #60a5fa 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.banner-title { font-size: 36px; font-weight: 800; margin-bottom: 16px; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.banner-text { font-size: 18px; color: #eef2ff; max-width: 700px; margin: 0 auto 32px; }

/* Footer */
.footer { background: #fff; padding: 60px 0 30px; border-top: 1px solid var(--c-border); }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-size: 20px; font-weight: 800; color: var(--c-primary); margin-bottom: 16px; display: block; }
.footer .footer-brand img { max-height: 200px; height: auto; width: auto; }
.footer-desc { color: var(--c-text-muted); font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer-heading { font-weight: 700; color: #0f172a; margin-bottom: 20px; font-size: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #64748b; font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--c-primary); }
.footer-bottom { border-top: 1px solid var(--c-border); padding-top: 30px; display: flex; justify-content: space-between; color: #94a3b8; font-size: 13px; }
.footer .footer-brand img { max-height: 200px; height: auto; width: auto; }

/* Mobile Menu */
.navtoggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
  z-index: 1001;
}
.navtoggle__bar {
  width: 100%;
  height: 3px;
  background: var(--c-text);
  border-radius: 2px;
  transition: 0.3s;
}

.navbackdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  pointer-events: none;
  backdrop-filter: blur(2px);
}
.navbackdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.nav-open { overflow: hidden; }

/* Admin Catalog Styles */
.admin-catalog-header { display: flex; flex-direction: column; gap: 16px; }
.admin-catalog-topbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.admin-catalog-topbar__left { display: flex; align-items: center; gap: 12px; }
.admin-catalog-drawerbtn { display: none; }
.admin-catalog-filters__panel {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  border-radius: var(--radius-md);
  z-index: 100;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.admin-catalog-filters { position: relative; }
.admin-catalog-filters[open] .admin-catalog-filters__panel { display: flex; }
.admin-catalog-topbar__actions { display: flex; gap: 8px; flex-wrap: wrap; border-top: 1px solid var(--c-border); padding-top: 16px; }

.admin-catalog-stats__row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.admin-catalog-stats__page { margin-left: auto; font-size: 13px; color: var(--c-text-muted); }

.admin-catalog-product { display: flex; gap: 12px; align-items: center; }
.admin-catalog-thumb { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; background: #f1f5f9; border: 1px solid var(--c-border); }
.admin-catalog-thumb--placeholder { display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--c-text-muted); text-align: center; line-height: 1; padding: 2px; }
.admin-catalog-product__title { font-weight: 600; font-size: 14px; line-height: 1.2; margin-bottom: 2px; }
.admin-catalog-product__meta { font-size: 12px; color: var(--c-text-muted); }

.admin-catalog-flags { display: flex; gap: 4px; flex-wrap: wrap; }
.admin-catalog-status { display: flex; flex-direction: column; gap: 2px; }
.admin-catalog-status__meta { font-size: 11px; color: var(--c-text-muted); }

.admin-catalog-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; position: relative; }
.admin-catalog-actions__primary { display: flex; gap: 8px; }
.admin-catalog-actions__more { position: relative; }
.admin-catalog-actions__menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 8px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
}
.admin-catalog-actions__menu .btn { width: 100%; justify-content: flex-start; text-align: left; }
.admin-catalog-actionbar { display: none; } /* Hide bottom redundant bar */

.admin-catalog-pagination { display: flex; justify-content: center; gap: 4px; margin-top: 24px; }

@media (max-width: 768px) {
  .admin-catalog-topbar { flex-direction: column; align-items: stretch; }
  .admin-catalog-topbar__right > div { width: 100%; }
  .admin-catalog-topbar__right .btn { flex: 1; }
  .admin-catalog-drawerbtn { display: inline-flex; }
  .admin-catalog-td--flags, .admin-catalog-td--status, .admin-catalog-col-id, .admin-catalog-td--id { display: none; }
  .admin-catalog-actions__primary { display: none; }
}

/* Admin / Generic Card */
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: 0.3s;
}
.card__body { padding: 20px; }
.card__title { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.card__meta { font-size: 14px; color: var(--c-text-muted); margin-bottom: 16px; }
.card__actions { margin-top: auto; display: flex; gap: 10px; }

/* Grid Layout generic */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Floating Buttons */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--c-border);
}
.floating-btn:hover { transform: translateY(-3px); }
.floating-btn--wa { background: #25D366; color: #fff; border-color: #25D366; }
.floating-btn--wa:hover { background: #128C7E; }
.floating-btn svg { width: 24px; height: 24px; fill: currentColor; }

/* Content Formatted (Typography for dynamic pages) */
.content-formatted { font-size: 16px; line-height: 1.8; color: var(--c-text); }
.content-formatted h2 { font-size: 28px; font-weight: 800; margin: 40px 0 20px; color: var(--c-primary); line-height: 1.2; }
.content-formatted h3 { font-size: 20px; font-weight: 700; margin: 30px 0 16px; color: var(--c-text); }
.content-formatted p { margin-bottom: 20px; }
.content-formatted ul, .content-formatted ol { margin-bottom: 20px; padding-left: 24px; }
.content-formatted li { margin-bottom: 8px; }

/* FAQ Styles */
.faq-details { margin-bottom: 16px; border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; background: #fff; }
.faq-summary { padding: 20px; font-weight: 700; cursor: pointer; background: var(--c-bg-alt); list-style: none; display: flex; justify-content: space-between; align-items: center; transition: 0.2s; }
.faq-summary:hover { background: #f1f5f9; }
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after { content: "+"; font-size: 20px; font-weight: 400; color: var(--c-text-muted); }
details[open] .faq-summary::after { content: "-"; }
.faq-content { padding: 20px; line-height: 1.6; border-top: 1px solid var(--c-border); color: var(--c-text-muted); }

/* Stats Grid (Sobre Nós) */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin-bottom: 40px; }
.stat-card { background: var(--c-bg-alt); padding: 24px; border-radius: var(--radius-lg); text-align: center; border: 1px solid var(--c-border); }
.stat-number { font-size: 36px; font-weight: 900; color: var(--c-primary); line-height: 1; margin-bottom: 8px; }
.stat-label { font-weight: 700; color: var(--c-text); font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Landing Page Styles (Product) */
.lp-hero { background: #0f172a; color: #fff; padding: 60px 0; text-align: center; }
.lp-title { font-size: 32px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.lp-subtitle { font-size: 18px; color: #cbd5e1; max-width: 800px; margin: 0 auto; }
.lp-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: -40px; position: relative; z-index: 10; }
.gallery-main { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--c-border); height: 500px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; position: relative; }
.gallery-thumbs { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.thumb-btn { width: 80px; height: 80px; border-radius: var(--radius-md); border: 2px solid transparent; cursor: pointer; overflow: hidden; opacity: 0.7; transition: 0.2s; flex-shrink: 0; }
.thumb-btn.active, .thumb-btn:hover { border-color: var(--c-primary); opacity: 1; }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.sticky-buy-box { position: sticky; top: 100px; background: #fff; padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--c-border); }
.tabs { display: flex; border-bottom: 1px solid var(--c-border); margin-bottom: 32px; overflow-x: auto; white-space: nowrap; }
.tab-btn { padding: 16px 24px; background: none; border: none; border-bottom: 3px solid transparent; font-weight: 600; color: var(--c-text-muted); cursor: pointer; font-size: 16px; transition: 0.2s; }
.tab-btn.active { color: var(--c-primary); border-color: var(--c-primary); }
.tab-content { display: none; animation: fadeIn 0.3s; }
.tab-content.active { display: block; }
.benefit-card { display: flex; gap: 16px; margin-bottom: 24px; align-items: start; }
.benefit-icon { width: 48px; height: 48px; background: var(--c-bg-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--c-primary); flex-shrink: 0; }

@media (max-width: 1024px) {
  .header { height: 64px; padding: 0; }
  .navtoggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 85%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    padding: 100px 32px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: 0.3s;
    align-items: flex-start;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.nav--open { transform: translateX(0); }
  .header__row { flex-wrap: nowrap; gap: 10px; }
  .header__row { padding-top: 0; padding-bottom: 0; }
  .brand__logo { max-height: 32px; }
  .header__search { order: 2; width: auto; max-width: none; margin: 0; flex: 0 0 auto; }
  .header__search .search-input { display: none; }
  .brand__logo { max-height: 32px; }
  .search-btn { width: 36px; height: 36px; }
  .sidebar-layout { grid-template-columns: 1fr; }
  body.is-admin .sidebar-layout { grid-template-columns: 1fr; }
  body.is-admin .sidebar-layout > aside { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .cols-2 { grid-template-columns: 1fr; gap: 40px; }
  
  .footer-cols { 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
  }
  .footer-cols > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 20px;
    margin-bottom: 10px;
  }

  .section-header { flex-direction: column; align-items: start; gap: 16px; }
  .hero__container { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { min-height: 300px; order: -1; }
  .header__auth { display:none !important; }

  /* Mobile LP Fixes */
  .lp-grid { grid-template-columns: 1fr; margin-top: 0; gap: 30px; }
  .gallery-main { height: auto; aspect-ratio: 4/3; padding: 10px; }
  .lp-hero { padding: 40px 24px; text-align: left; }
  .sticky-buy-box { position: static; box-shadow: none; border: 1px solid var(--c-border); margin-top: 0; padding: 24px; }
  .lp-title { font-size: 24px; }
  .lp-subtitle { font-size: 16px; }
  .thumb-btn { width: 60px; height: 60px; }

  /* Visibility Helpers for Accordion/Tabs */
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .container { padding: 0 16px; }

  .topbar {
    padding: 4px 0;
    font-size: 12px;
    background: #f8fafc;
    color: var(--c-text-muted);
  }
  .topbar__container { gap: 10px; }
  .topbar__contact { min-width: 0; flex: 1 1 auto; }
  .topbar__wa { display: flex; align-items: center; gap: 8px; min-width: 0; }
  .topbar__wa-label { white-space: nowrap; font-weight: 700; }
  .topbar__wa-number { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .topbar__langs { flex: 0 0 auto; }
  .topbar__langs-buttons { display: none; }
  .topbar__langdd { display: block; position: relative; }
  .topbar__langdd-summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    background: #fff;
    color: var(--c-text);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    min-height: 32px;
  }
  .topbar__langdd-summary::-webkit-details-marker { display: none; }
  .topbar__langdd-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 8px;
    min-width: 180px;
    z-index: 1100;
    gap: 6px;
  }
  .topbar__langdd[open] .topbar__langdd-menu { display: grid; }
  .topbar__langdd-item {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }
  .topbar__langdd-item.is-active { border-color: var(--c-primary); color: var(--c-primary); background: rgba(56,189,248,0.08); }

  .header__row { padding: 0 12px; }
  .brand { flex: 0 0 auto; min-width: 0; }
  .brand__logo { max-height: 28px; }
  .brand__text { font-size: 18px; }

  .header__search { order: 0; flex: 1 1 auto; max-width: none; margin: 0; min-width: 0; height: 40px; }
  .header__search .search-input { display: block; height: 40px; padding: 0 48px 0 12px; font-size: 13px; min-width: 0; }
  .header__search .search-btn { width: 40px; height: 40px; right: 0; border-radius: 10px; }

  .navtoggle {
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    background: #fff;
  }

  .navbackdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .navbackdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 85%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 9999;
    display: flex;
    gap: 0;
  }
  .nav.nav--open { transform: translateX(0); }
  .nav__link {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 16px;
  }
  .nav__link:last-child { border-bottom: none; }
  
  .nav__langs { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--c-border); display: grid; gap: 12px; width: 100%; }
  .nav__section-title { font-size: 12px; font-weight: 900; text-transform: uppercase; color: var(--c-text-muted); letter-spacing: .02em; }
  .nav__langdd > summary { list-style: none; cursor: pointer; font-weight: 800; font-size: 14px; padding: 12px 12px; border: 1px solid var(--c-border); border-radius: 12px; }
  .nav__langdd > summary::-webkit-details-marker { display: none; }
  .nav__langdd-menu { display: grid; gap: 8px; margin-top: 8px; }
  .nav__langdd-item {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 12px 12px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    min-height: 40px;
  }
  .nav__langdd-item.is-active { border-color: var(--c-primary); color: var(--c-primary); background: rgba(56,189,248,0.08); }

  .page-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.60), rgba(15, 23, 42, 0.60)), var(--hero-bg, none);
  }
}

body.nav-open { overflow: hidden; }

@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
  .product-card { border-radius: 10px; }
  .product-img-wrapper { height: 160px; }
  .product-info { padding: 14px; }
  .product-meta { flex-direction: column; align-items: stretch; gap: 10px; }
  .product-meta .btn { width: 100%; justify-content: center; }
  .product-price { font-size: 14px; }
  .product-price--consult { font-size: 13px; }
  .flash-grid { display: grid; grid-auto-flow: column; grid-auto-columns: 70%; overflow-x: auto; gap: 12px; padding-bottom: 8px; }
  .product-title { font-size: 14px; line-height: 1.25; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
}

@media (max-width: 768px) {
  .hero { min-height: 340px; }
  .hero--bg { background-position: center; }
  .hero--carousel .hero-slide { min-height: 340px; }
  .hero--product-slider .hero-slide { min-height: 340px; background-position: center; }
  .hero--carousel .hero-dots { bottom: 16px; }
}

@media (min-width: 1025px) {
  .desktop-only { display: block !important; }
  .mobile-only { display: none !important; }
}

@media (max-width: 600px) {
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-card { padding: 16px; }
  .cat-icon { font-size: 24px; margin-bottom: 8px; }
  .cat-title { font-size: 14px; }
  
  /* Mobile Typography */
  .hero__title { font-size: 32px; }
  .page-hero__title { font-size: 28px; }
  .section-title { font-size: 24px; }
  
  /* Tabs Scroll Hint */
  .tabs { padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
  .tab-btn { padding: 12px 16px; font-size: 14px; white-space: nowrap; }
}

body.is-admin .admin-drawer-toggle { position: fixed; opacity: 0; pointer-events: none; }
body.is-admin .admin-drawer-backdrop { display: none; }
body.is-admin .admin-drawer-panelbar { display: none; }

body.is-admin .admin-catalog-topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
body.is-admin .admin-catalog-topbar__left { display: flex; align-items: center; gap: 10px; min-width: 0; }
body.is-admin .admin-catalog-topbar__right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
body.is-admin .admin-catalog-drawerbtn { display: none; }
body.is-admin .admin-catalog-topbar__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

body.is-admin .admin-catalog-stats__row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
body.is-admin .admin-catalog-stats__page { margin-left: auto; }

body.is-admin .admin-catalog-table .admin-catalog-col-id { width: 64px; }
body.is-admin .admin-catalog-table .admin-catalog-col-actions { width: 1%; white-space: nowrap; }
body.is-admin .admin-catalog-td--product { min-width: 280px; }
body.is-admin .admin-catalog-product { display: flex; gap: 12px; align-items: center; min-width: 0; }
body.is-admin .admin-catalog-thumb { width: 56px; height: 44px; object-fit: cover; border-radius: 10px; border: 1px solid var(--c-border); background: var(--c-bg-alt); flex: 0 0 auto; display: block; }
body.is-admin .admin-catalog-thumb--placeholder { display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--c-text-muted); padding: 0 8px; text-align: center; }
body.is-admin .admin-catalog-product__text { min-width: 0; }
body.is-admin .admin-catalog-product__title { font-weight: 800; color: #0f172a; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
body.is-admin .admin-catalog-product__meta { margin-top: 4px; font-size: 13px; color: var(--c-text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

body.is-admin .admin-catalog-flags { display: flex; gap: 8px; flex-wrap: wrap; }

body.is-admin .admin-catalog-status__meta { margin-top: 6px; font-size: 12px; color: var(--c-text-muted); }

body.is-admin .admin-catalog-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
body.is-admin .admin-catalog-actions__primary { display: flex; gap: 8px; }
body.is-admin .admin-catalog-actions__more { position: relative; }
body.is-admin .admin-catalog-actions__more > summary { list-style: none; }
body.is-admin .admin-catalog-actions__more > summary::-webkit-details-marker { display: none; }
body.is-admin .admin-catalog-actions__menu { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--c-border); border-radius: 12px; box-shadow: var(--shadow-md); padding: 10px; min-width: 180px; display: grid; gap: 8px; z-index: 30; }
body.is-admin .admin-catalog-actions__menu form { margin: 0; }
body.is-admin .admin-catalog-actions__menu .btn { width: 100%; justify-content: flex-start; }

body.is-admin .admin-catalog-pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }

body.is-admin .admin-catalog-filters { position: relative; }
body.is-admin .admin-catalog-filters > summary { list-style: none; }
body.is-admin .admin-catalog-filters > summary::-webkit-details-marker { display: none; }
body.is-admin .admin-catalog-filters__panel { position: absolute; right: 0; top: calc(100% + 8px); width: min(360px, calc(100vw - 32px)); background: #fff; border: 1px solid var(--c-border); border-radius: 12px; box-shadow: var(--shadow-md); padding: 12px; z-index: 30; }
body.is-admin .admin-catalog-filterfield { display: grid; gap: 6px; font-weight: 700; font-size: 12px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .02em; }
body.is-admin .admin-catalog-filterfield input { width: 100%; padding: 10px 12px; border: 1px solid var(--c-border); border-radius: 10px; font-size: 14px; }
body.is-admin .admin-catalog-filtercheck { display: flex; gap: 10px; align-items: center; margin-top: 10px; font-size: 14px; }
body.is-admin .admin-catalog-filteractions { margin-top: 12px; display: flex; justify-content: flex-end; }

body.is-admin .admin-catalog-actionbar { display: none; }

@media (max-width: 1024px) {
  body.is-admin .admin-drawer-panelbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--c-border); }

  body.is-admin .admin-drawer-backdrop { position: fixed; inset: 0; background: rgba(15,23,42,0.55); z-index: 1000; }
  body.is-admin .admin-drawer-toggle:checked + .admin-drawer-backdrop { display: block; }
  body.is-admin .admin-drawer-layout > aside { position: fixed; top: 0; bottom: 0; left: 0; width: min(320px, 88vw); transform: translateX(-110%); transition: transform 0.22s ease; z-index: 1001; padding: 16px; overflow: auto; background: transparent; }
  body.is-admin .admin-drawer-toggle:checked + .admin-drawer-backdrop + .container .admin-drawer-layout > aside { transform: translateX(0); }
  body.is-admin .admin-drawer-layout > aside .panel { height: 100%; }

  body.is-admin .admin-catalog-drawerbtn { display: inline-flex; }
}

@media (max-width: 768px) {
  body.is-admin .admin-catalog { padding-bottom: 96px; }
  body.is-admin .admin-catalog-topbar__actions { display: none; }

  body.is-admin .admin-catalog-table thead { display: none; }
  body.is-admin .admin-catalog-table, body.is-admin .admin-catalog-table tbody, body.is-admin .admin-catalog-table tr, body.is-admin .admin-catalog-table td { display: block; width: 100%; }
  body.is-admin .admin-catalog-table { border-collapse: separate; }
  body.is-admin .admin-catalog-table tr { background: #fff; border: 1px solid var(--c-border); border-radius: 14px; box-shadow: var(--shadow-sm); padding: 14px; margin-bottom: 12px; }
  body.is-admin .admin-catalog-table td { border-bottom: 0; padding: 0; }
  body.is-admin .admin-catalog-td--id { display: none; }
  body.is-admin .admin-catalog-td--flags { margin-top: 12px; }
  body.is-admin .admin-catalog-td--status { margin-top: 12px; }
  body.is-admin .admin-catalog-td--actions { margin-top: 12px; }
  body.is-admin .admin-catalog-actions { justify-content: space-between; }
  body.is-admin .admin-catalog-actions__menu { right: 0; left: auto; }

  body.is-admin .admin-catalog-actionbar { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 900; padding: 12px; background: rgba(255,255,255,0.92); border: 1px solid var(--c-border); border-radius: 16px; box-shadow: var(--shadow-md); backdrop-filter: blur(8px); }
  body.is-admin .admin-catalog-actionbar .btn { width: 100%; padding: 12px 12px; font-size: 14px; }
}

@media (min-width: 769px) {
  body.is-admin .admin-drawer-panelbar { display: none; }
}
