/* Files edited: assets/theme.css, assets/admin.css, admin.php, admin_layout.php */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap');

:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
  --brand: #1f5fa5;
  --brand-600: #1f5fa5;
  --brand-700: #103b66;
  --accent: #2fa36a;
  --success: #2fa36a;
  --warning: #f59e0b;
  --danger: #ef4444;
  --focus-ring: rgba(31, 95, 165, 0.28);
}

html[data-theme='light'] {
  --bg: #fafafa;
  --text: #111827;
}

html[data-theme='dark'] {
  --bg: #f8fafc;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}
img, svg, video, canvas, iframe {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.prose {
  overflow-x: hidden;
  overflow-wrap: anywhere;
}
.prose table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}
.prose pre {
  max-width: 100%;
  overflow-x: auto;
}

.faq-content {
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.faq-content p {
  margin-top: 0.5rem;
}

a {
  color: var(--brand-700);
}
a:hover {
  color: var(--brand-600);
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(14px, 3vw, 24px);
  padding-right: clamp(14px, 3vw, 24px);
}

header.blur-bg {
  background: rgba(250, 250, 250, 0.9);
  border-bottom: 1px solid var(--border);
}
header.blur-bg a {
  color: var(--brand-600);
}
header.blur-bg a:hover {
  color: var(--brand-700);
}

.header-menu-wrap {
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--border);
}
.header-menu {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.5rem 1rem 0.75rem;
}
.header-menu-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.header-menu-item {
  position: relative;
}
.header-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--brand-700);
  white-space: nowrap;
}
.header-menu-link:hover {
  background: color-mix(in oklab, var(--brand-600) 10%, #ffffff);
}
.header-submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.5rem;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}
.header-menu-item:hover .header-submenu,
.header-menu-item.is-open .header-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-submenu-link,
.header-submenu-label {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.6rem;
  font-weight: 500;
}
.header-submenu-link:hover {
  background: color-mix(in oklab, var(--brand-600) 8%, #ffffff);
}
.header-submenu-label {
  color: #6b7280;
}

.text-brand-600,
.text-brand-700 {
  color: var(--brand-700) !important;
}
.text-brand-500 {
  color: var(--brand-600) !important;
}
.bg-brand-50 {
  background-color: color-mix(in oklab, var(--brand-600) 6%, #fff) !important;
}
.bg-brand-600 {
  background-color: var(--brand-600) !important;
}
.bg-brand-700 {
  background-color: var(--brand-700) !important;
}
.border-brand-200 {
  border-color: color-mix(in oklab, var(--brand-600) 15%, var(--border)) !important;
}
.border-brand-300 {
  border-color: color-mix(in oklab, var(--brand-600) 22%, var(--border)) !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

button:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.product-ribbon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--brand-600), color-mix(in oklab, var(--brand-600) 80%, var(--accent)));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(31, 95, 165, 0.18);
}

.product-checkout-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.25);
}

.brand-name {
  display:inline-flex;
  gap:.35rem;
  align-items:baseline;
}
.brand-name .brand-primary {
  color: var(--brand-700);
  font-weight:700;
}
.brand-name .brand-accent {
  color: #16a34a;
  font-weight:700;
}

.hero-surface {
  background:
    radial-gradient(800px circle at 10% 20%, rgba(37, 99, 235, 0.1), transparent 55%),
    radial-gradient(800px circle at 90% 10%, rgba(59, 130, 246, 0.08), transparent 50%),
    linear-gradient(135deg, #f8fafc 0%, #eef2ff 35%, #ffffff 100%);
  color: var(--text);
  border-radius: 0;
  overflow: visible;
}
.hero-section {
  padding: 32px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-700);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.hero-title {
  font-size: var(--hero-title-size, clamp(2rem, 3vw, 3.2rem));
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.6;
  max-width: 34rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-search {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 26px -22px rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(8px);
}
@media (min-width: 640px) {
  .hero-search {
    flex-direction: row;
    align-items: center;
  }
}
.hero-search-input {
  flex: 1;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0 16px;
  color: #0f172a;
  background: #fff;
}
.hero-search-input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.hero-search-btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  background: var(--brand-600);
  color: #fff;
  font-weight: 600;
  border: none;
  box-shadow: 0 10px 24px -18px rgba(37, 99, 235, 0.45);
  transition: all 0.2s ease;
}
.hero-search-btn:hover {
  background: var(--brand-700);
  transform: translateY(-1px);
}
.hero-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px -22px rgba(15, 23, 42, 0.3);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  font-size: 16px;
}
.hero-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}
.hero-card-text {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

.blog-home-section {
  padding-top: 6px;
}
.blog-home-header {
  position: relative;
  display: flex;
  align-items: center;
    text-align: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 12px;
}
.blog-title-block {
  text-align: center;
}
.blog-home-header h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.blog-home-header h2::before,
.blog-home-header h2::after {
  content: "";
  height: 1px;
  width: 32px;
  background: color-mix(in oklab, var(--border) 80%, #fff);
}
.blog-home-header p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 2px;
}
.blog-view-all {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-700);
  border: 1px solid color-mix(in oklab, var(--brand-600) 25%, #dbeafe);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--brand-600) 8%, #fff);
  transition: all 0.2s ease;
}
.blog-view-all:hover {
  color: var(--brand-800);
  border-color: color-mix(in oklab, var(--brand-600) 40%, #dbeafe);
  transform: translateY(-1px);
}
.blog-carousel {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: visible;
}
.blog-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--border) 70%, #fff);
  background: var(--panel);
  display: grid;
  place-items: center;
  color: var(--gray-700);
  transition: all 0.2s ease;
  flex: 0 0 auto;
}
.blog-nav:hover {
  border-color: color-mix(in oklab, var(--brand-600) 30%, var(--border));
  color: var(--brand-700);
  transform: translateY(-1px);
}
.blog-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.blog-track {
  display: flex;
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding-bottom: 12px;
  scroll-padding-left: 12px;
}
.blog-card {
  scroll-snap-align: start;
  width: min(320px, 85vw);
  min-width: min(320px, 85vw);
  height: auto;
  border-radius: 18px;
  border: 1px solid color-mix(in oklab, var(--border) 85%, #fff);
  background: var(--panel);
  box-shadow: 0 14px 26px -22px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--brand-600) 25%, var(--border));
  box-shadow: 0 18px 34px -24px rgba(15, 23, 42, 0.35);
}
.blog-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
  border-top: 1px solid color-mix(in oklab, var(--border) 70%, #fff);
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  text-transform: uppercase;
}
.blog-date {
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}
.blog-dot {
  color: var(--border);
}
.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.blog-body h3 a:hover {
  color: var(--brand-600);
}
.blog-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.blog-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.blog-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  border: 1px solid color-mix(in oklab, var(--brand-600) 25%, #dbeafe);
  color: var(--brand-700);
  background: color-mix(in oklab, var(--brand-600) 10%, #fff);
  font-weight: 600;
  font-size: 0.82rem;
  align-self: flex-start;
  transition: all 0.2s ease;
}
.blog-cta:hover {
  border-color: color-mix(in oklab, var(--brand-600) 40%, #dbeafe);
  color: var(--brand-800);
}
.blog-article .prose h2 {
  margin-top: 1.6rem;
}
.blog-article .prose h3 {
  margin-top: 1.2rem;
}

.hp-skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.hp-skip-link:focus {
  left: 12px;
}

/* Header (lightweight UI on top of Tailwind) */
.hp-top-banner {
  /* Within-brand palette for a clean, fast banner */
  background: linear-gradient(90deg, var(--brand-700) 0%, var(--brand-600) 100%);
  color: #ffffff;
  border-bottom: 1px solid color-mix(in oklab, var(--brand-700) 30%, rgba(15, 23, 42, 0.10));
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.10);
}
.hp-top-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 44px;
}
.hp-top-banner-inner > * {
  min-width: 0;
}
.hp-top-banner-center {
  text-align: center;
  justify-self: center;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-wrap: anywhere;
}
.hp-top-banner-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}
.hp-top-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--brand-700);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.hp-top-banner-cta:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}
.hp-top-banner-cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}
@media (max-width: 640px) {
  .hp-top-banner-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
  }
  .hp-top-banner-actions {
    justify-self: center;
    flex-wrap: wrap;
  }
  .hp-top-banner-spacer {
    display: none;
  }
  .hp-top-banner-center {
    white-space: normal;
    text-overflow: clip;
    overflow: visible;
  }
  .hp-top-banner-link,
  .hp-top-banner-text {
    font-weight: 700;
    flex-wrap: wrap;
    justify-content: center;
  text-align: center;
    text-align: center;
  }
}
.hp-top-banner-link,
.hp-top-banner-text {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.10);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hp-top-banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
}
.hp-top-banner-link:hover {
  text-decoration: underline;
}
.hp-top-banner-pill {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
}
/* Featured carousel (home) */
.hp-carousel {
  position: relative;
}
.hp-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 14px;
  overflow-x: auto;
  padding: 6px 44px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 44px;
  -webkit-overflow-scrolling: touch;
}
.hp-carousel-track::-webkit-scrollbar { height: 8px; }
.hp-carousel-track::-webkit-scrollbar-thumb { background: rgba(15,23,42,.15); border-radius: 999px; }
.hp-carousel-item { scroll-snap-align: start; }
.hp-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}
.hp-carousel-nav:disabled { opacity: .35; cursor: not-allowed; }
.hp-carousel-nav.prev { left: 8px; }
.hp-carousel-nav.next { right: 8px; }
.hp-carousel-dots {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding-top: 12px;
}
.hp-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 23, 42, 0.20);
}
.hp-dot.active { background: rgba(15, 23, 42, 0.55); }
@media (max-width: 640px) {
  .hp-carousel-track { padding: 6px 10px; scroll-padding-left: 10px; }
  .hp-carousel-nav { display: none; }
}

/* Home featured (Seleção especial) */
.home-featured-section {
  background: #eaf1ff;
}
.home-featured-bg {
  background: linear-gradient(140deg, rgba(219,232,255,0.85), rgba(240,247,255,0.9));
}
.home-featured-section .featured-card button {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  line-height: 1.2;
  border-radius: 0.75rem;
}

/* Provas sociais (Home) */
.home-social-carousel {
  position: relative;
  margin-bottom: 1rem;
}
.home-social-track-wrapper {
  overflow: hidden;
  margin: 0 -1rem;
}
.home-social-track {
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  position: relative;
  scroll-snap-stop: always;
}
.home-social-track::-webkit-scrollbar {
  display: none;
}
.home-social-card {
  min-height: 220px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
  padding: 1.25rem;
  box-shadow: 0 18px 40px -28px rgba(15,23,42,.35);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 0 0 auto;
  width: min(360px, 85vw);
  min-width: min(360px, 85vw);
}
.home-social-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.home-social-card-rating {
  font-size: 0.9rem;
  display: flex;
  gap: 0.2rem;
  background: rgba(253,224,71,.15);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}
.home-social-card-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f8fafc;
  cursor: pointer;
}
.home-social-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-social-card-avatar--initial {
  font-weight: 700;
  color: #1d4ed8;
}
.home-social-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,0.15);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 12px 24px -18px rgba(15,23,42,.6);
}
.home-social-control:hover {
  border-color: #2563eb;
  color: #2563eb;
}
.home-social-prev {
  left: 0.5rem;
}
.home-social-next {
  right: 0.5rem;
}
.home-social-bullets {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  text-align: center;
  margin-top: 0.75rem;
}
.home-social-bullet {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: #cbd5f5;
  transition: background .2s;
}
.home-social-bullet.active {
  background: #1d4ed8;
}
.hp-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  width: 100%;
  left: 0;
  right: 0;
}
.hp-header-row {
  flex-wrap: nowrap;
}
.hp-header-logo {
  min-width: 0;
}
.hp-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.hp-icon-btn {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hp-icon-btn.hp-icon-primary {
  border-color: color-mix(in oklab, var(--brand-600) 42%, rgba(15, 23, 42, 0.08));
  background: color-mix(in oklab, var(--brand-600) 10%, #ffffff);
  color: var(--brand-700, #1e40af);
}
.hp-icon-btn.hp-icon-primary:hover {
  border-color: color-mix(in oklab, var(--brand-600) 60%, rgba(15, 23, 42, 0.08));
  background: color-mix(in oklab, var(--brand-600) 14%, #ffffff);
}
.hp-icon-btn.hp-icon-attn {
  border-color: color-mix(in oklab, var(--brand-600) 55%, rgba(15, 23, 42, 0.08));
  background: var(--brand-600, #2563eb);
  color: #fff;
}
.hp-icon-btn.hp-icon-attn:hover {
  background: color-mix(in oklab, var(--brand-700) 90%, #000000);
  border-color: color-mix(in oklab, var(--brand-700) 70%, rgba(15, 23, 42, 0.08));
}
.hp-icon-btn.hp-icon-attn i {
  color: #fff;
}
.hp-icon-btn:hover {
  border-color: color-mix(in oklab, var(--brand-600) 35%, rgba(15, 23, 42, 0.08));
  background: color-mix(in oklab, var(--brand-600) 6%, #ffffff);
}
.hp-icon-btn:active {
  transform: translateY(1px);
}
.hp-dropdown {
  display: none;
}
.hp-dropdown.is-open {
  display: block;
}
.hp-dropdown-panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}
.hp-muted {
  color: #64748b;
  font-size: 13px;
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0.7rem 1rem;
  border-radius: 0.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--brand-600, #2563eb);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-700, #1d4ed8);
}
.btn-secondary {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
  color: #1f2937;
}
.btn-secondary:hover {
  border-color: color-mix(in oklab, var(--brand-600) 35%, rgba(15, 23, 42, 0.12));
  color: var(--brand-700, #1d4ed8);
}
.product-card-actions {
  display: grid;
  gap: 8px;
}
.hp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.hp-badge-sale {
  background: #fef3c7;
  color: #92400e;
}
.hp-badge-rx {
  background: color-mix(in oklab, var(--brand-600) 14%, #ffffff);
  color: var(--brand-700, #1e40af);
  border: 1px solid color-mix(in oklab, var(--brand-600) 22%, #e5e7eb);
}
.hp-breadcrumb {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.hp-breadcrumb a {
  color: #475569;
}
.hp-breadcrumb a:hover {
  color: var(--brand-700, #1e40af);
}

/* Mobile menu */
.hp-mobile-overlay {
  display: none;
}
.hp-mobile-overlay.is-open {
  display: block;
}
.hp-mobile-panel {
  transform: translateX(-110%);
  transition: transform 0.25s ease;
}
.hp-mobile-panel.is-open {
  transform: translateX(0);
}

/* Search autocomplete */
.hp-search {
  position: relative;
}
.hp-search-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 60;
}
.hp-search-panel.is-open {
  display: block;
}
.hp-search-results {
  list-style: none;
  margin: 0;
  padding: 6px;
  max-height: 360px;
  overflow: auto;
}
.hp-search-item {
  border-radius: 12px;
}
.hp-search-item.is-active {
  background: color-mix(in oklab, var(--brand-600) 8%, #ffffff);
}
.hp-search-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
}
.hp-search-link:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--brand-600) 55%, #ffffff);
  outline-offset: 2px;
}
.hp-search-img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: contain;
  background: #f1f5f9;
  flex: none;
}
.hp-search-meta {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.hp-search-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hp-search-sub {
  font-size: 12px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hp-search-right {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
}
.hp-search-price {
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
}
.hp-search-empty {
  padding: 14px 12px;
}
.hp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.hp-chip {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  background: #fff;
}
.hp-chip:hover {
  border-color: color-mix(in oklab, var(--brand-600) 35%, rgba(15, 23, 42, 0.08));
}
.hp-spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.15);
  border-top-color: var(--brand-600, #2563eb);
  animation: hpSpin 0.75s linear infinite;
  display: none;
}
.hp-spinner.is-on {
  display: inline-block;
}
@keyframes hpSpin { to { transform: rotate(360deg); } }

.checkout-steps-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 8px;
}
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #fff;
}
.checkout-step .step-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  background: #e2e8f0;
  color: #0f172a;
  font-weight: 600;
}
.checkout-step.active {
  border-color: rgba(37, 99, 235, 0.35);
  background: #f8fafc;
}
.checkout-step.active .step-dot {
  background: #2563eb;
  color: #fff;
}
.checkout-step.done {
  border-color: rgba(22, 163, 74, 0.35);
  background: #f0fdf4;
}
.checkout-step.done .step-dot {
  background: #16a34a;
  color: #fff;
}
.checkout-step .step-label {
  font-size: 12px;
  color: #475569;
  font-weight: 600;
}
.payment-option {
  display: block;
}
.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-outline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.payment-outline:hover {
  transform: translateY(-1px);
}
.payment-option input:focus-visible + .payment-outline {
  box-shadow: 0 0 0 3px var(--focus-ring);
}
.payment-option input:checked + .payment-outline {
  border-color: var(--brand-600);
  box-shadow: 0 12px 24px -18px rgba(31, 95, 165, 0.6);
}
.payment-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: #fff;
  display: grid;
  place-items: center;
}
.payment-check::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: transparent;
}
.payment-option input:checked + .payment-outline .payment-check {
  border-color: var(--brand-600);
  background: color-mix(in oklab, var(--brand-600) 18%, #fff);
}
.payment-option input:checked + .payment-outline .payment-check::after {
  background: var(--brand-600);
}
@media (max-width: 640px) {
  .checkout-steps {
    grid-template-columns: 1fr;
  }
}
.blog-post-cta {
  background: color-mix(in oklab, var(--brand-600) 6%, #ffffff);
}
.page-proofs h2,
.page-faq h2 {
  position: relative;
}
.page-proof-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-proof-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}
.page-cta {
  background: color-mix(in oklab, var(--brand-600) 8%, #ffffff);
}
.page-faq-item {
  background: #fff;
}
.faq-accordion details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}
.faq-accordion summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-accordion summary::-webkit-details-marker {
  display: none;
}
.faq-accordion summary::after {
  content: '+';
  font-weight: 700;
  color: var(--brand-700);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--brand-600) 14%, #ffffff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}
.faq-accordion details[open] summary::after {
  content: '−';
}
.faq-accordion details > div {
  color: #475569;
}
.page-notice {
  border-color: color-mix(in oklab, #f59e0b 45%, var(--border));
}
.trust-block .trust-card {
  background: color-mix(in oklab, #22c55e 6%, #ffffff);
  border: 1px solid color-mix(in oklab, #22c55e 22%, var(--border));
}
.trust-block .trust-header h3 {
  font-size: 1.1rem;
}
.trust-item .trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in oklab, var(--brand-600) 12%, #ffffff);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-note {
  background: #f3f4f6;
}

.trust-block .trust-card {
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}
.trust-block .trust-item {
  padding: 8px 4px;
}
.trust-block .trust-item .font-semibold {
  font-size: 0.95rem;
  line-height: 1.3;
}
.trust-block .trust-item .text-sm {
  line-height: 1.5;
}
.trust-block .trust-note {
  border-color: var(--border);
}

@media (max-width: 768px) {
  .trust-block .trust-card {
    padding: 18px;
  }
  .trust-block .trust-item {
    gap: 10px;
  }
  .trust-block .trust-item .trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }
  .trust-block .trust-note {
    padding: 12px 14px;
  }
}

@media (max-width: 640px) {
  .trust-block .trust-card {
    padding: 16px;
  }
  .trust-block .trust-header h3 {
    font-size: 1rem;
  }
  .trust-block .trust-item {
    padding: 6px 0;
  }
}
.blog-callout {
  margin: 16px 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--brand-600) 18%, var(--border));
  background: color-mix(in oklab, var(--brand-600) 6%, #fff);
  color: var(--text);
  font-size: 0.9rem;
}
.blog-faq .faq-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.blog-faq .faq-item:last-child {
  border-bottom: none;
}
.blog-faq h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.clamp-2,
.clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clamp-2 {
  -webkit-line-clamp: 2;
}
.clamp-3 {
  -webkit-line-clamp: 3;
}

@media (max-width: 768px) {
  .blog-home-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }
  .blog-title-block {
    text-align: left;
  }
  .blog-home-header h2 {
    justify-content: flex-start;
  }
  .blog-home-header h2::before,
  .blog-home-header h2::after {
    width: 20px;
  }
  .blog-view-all {
    position: static;
    transform: none;
  }
  .blog-card {
    width: 85%;
    min-width: 85%;
  }
  .blog-nav {
    display: none;
  }
  .blog-track {
    scroll-padding-left: 10px;
    padding-left: 4px;
  }
  .header-menu {
    padding: 0.35rem 0.75rem 0.6rem;
  }
  .header-submenu {
    position: static;
    box-shadow: none;
    transform: none;
    border: 1px solid var(--border);
    margin-top: 0.5rem;
    display: none;
  }
  .header-menu-item.is-open .header-submenu {
    display: block;
  }
}

@media (max-width: 640px) {
  .mobile-grid-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .product-card .p-4 {
    padding: 14px;
  }
  header.blur-bg {
    backdrop-filter: blur(18px);
    border-bottom: none;
  }
  .hero-section {
    padding: 32px 18px;
    text-align: left;
  }
  .hero-search {
    flex-direction: column;
    gap: 12px;
  }
  .hero-search-input {
    width: 100%;
  }
  .hero-search-btn {
    width: 100%;
    justify-content: center;
  text-align: center;
  }
  .whatsapp-button {
    right: 16px;
    bottom: 16px;
  }
}

.whatsapp-button {
  max-width: 100vw;
}
.whatsapp-button a {
  max-width: calc(100vw - 32px);
  min-height: 44px;
}
.whatsapp-button .whatsapp-text {
  display: flex;
  flex-direction: column;
}

.site-footer {
  background: linear-gradient(135deg, var(--brand-700), color-mix(in oklab, var(--brand-700) 80%, #0b1622));
  color: #e2e8f0;
  margin-top: 3rem;
}
.site-footer a {
  color: #dbe4ee;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.site-footer a:hover {
  color: #ffffff;
  opacity: 0.9;
}
.site-footer .footer-title {
  font-weight: 700;
  font-size: 1.1rem;
}
.site-footer .footer-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.35rem;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.footer-brand-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: #1f2a36;
}
.footer-col-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.footer-menu-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer-menu-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cbd5e1;
  margin-bottom: 6px;
}
.footer-contact address {
  font-style: normal;
  display: grid;
  gap: 10px;
  color: #dbe4ee;
}
.footer-contact address div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-contact i {
  color: #9fb6cf;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.25);
}
.footer-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.footer-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}
.footer-seal i {
  color: #9fd3ff;
}
.footer-cta p {
  color: #dbe4ee;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.footer-col > *:last-child {
  margin-top: auto;
}
.footer-form {
  display: grid;
  gap: 10px;
}
.footer-form input {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.4);
  padding: 12px 14px;
  color: #fff;
}
.footer-form input::placeholder {
  color: #cbd5e1;
}
.footer-form button {
  border: none;
  border-radius: 12px;
  background: #1abc9c;
  color: #0b1f2a;
  font-weight: 700;
  padding: 12px 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #cbd5e1;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-copy {
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-menu {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand-row {
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
  align-items: flex-start;
}

.restricted-form {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin: 16px 0 24px;
}
.restricted-form input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}
.restricted-form button {
  background: var(--brand-600);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
}
}

.account-section {
  padding: 40px 16px;
  background: #f5f7fb;
}
.account-shell {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.account-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.account-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
}
.account-alert-error {
  background: #fee2e2;
  color: #b91c1c;
}
.account-alert-success {
  background: #dcfce7;
  color: #15803d;
}
.account-alert-info {
  background: #e0f2fe;
  color: #0369a1;
}
.account-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.account-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px -30px rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(148, 163, 184, 0.15);
}
.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
}
.account-menu {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  position: sticky;
  top: 24px;
  align-self: start;
}
.account-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.account-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--brand-600) 18%, #ffffff);
  display: grid;
  place-items: center;
  color: var(--brand-700);
}
.account-nav {
  display: grid;
  gap: 8px;
}
.account-nav a,
.account-nav-logout button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: #1f2937;
  font-weight: 600;
  background: #f8fafc;
}
.account-nav a.active {
  border-color: color-mix(in oklab, var(--brand-600) 30%, #ffffff);
  background: color-mix(in oklab, var(--brand-600) 10%, #ffffff);
  color: var(--brand-700);
}
.account-nav-logout button {
  width: 100%;
  border: 1px solid #e2e8f0;
  background: #fff;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.account-content {
  display: grid;
  gap: 16px;
}
.account-orders {
  display: grid;
  gap: 14px;
}
.account-order-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  background: #f8fafc;
}
.account-items {
  display: grid;
  gap: 8px;
}
.account-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 6px;
  font-size: 0.95rem;
}
.account-total {
  font-size: 1.05rem;
  text-align: right;
}
.account-address {
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px;
}
.account-tracking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f1f5f9;
  padding: 12px;
  border-radius: 14px;
}
.account-timeline {
  border-left: 2px solid #e2e8f0;
  padding-left: 18px;
  margin-top: 10px;
}
.timeline-row {
  position: relative;
  padding-bottom: 16px;
}
.timeline-row:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand-600);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.account-summary {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
@media (max-width: 900px) {
  .account-layout {
    grid-template-columns: 1fr;
  }
  .account-menu {
    position: static;
  }
}

/* ===== Responsividade base ===== */
@media (max-width: 1024px) {
  .hero-section { padding: 26px 0; }
  .hp-header .hp-search { min-width: 0; }
}

@media (max-width: 768px) {
  .hp-header-row {
    flex-wrap: wrap;
  }
  .hp-header-logo {
    order: 1;
    flex: 1 1 auto;
  }
  .hp-header-actions {
    order: 2;
  }
  .hp-search {
    order: 3;
    width: 100%;
  }
  .hp-header .max-w-7xl { max-width: 100%; }
  .hp-header .px-4 { padding-left: 12px; padding-right: 12px; }
  .hp-header .hp-top-banner-inner { flex-wrap: wrap; gap: 8px; }
  .hp-header .hp-top-banner-actions { width: 100%; justify-content: flex-start; }
  .hp-header .hp-top-banner-center { width: 100%; justify-content: center; text-align: center; }
  text-align: center;
  .hp-header .hp-top-banner-spacer { display: none; }
  .hp-header .hp-search form > div { flex-wrap: wrap; }
  .hp-header .hp-search form > div > button { width: 100%; justify-content: center; }
  text-align: center;
  .hp-header .hp-search-panel { max-width: 100vw; }
  .hp-header .hp-dropdown { max-width: 90vw; }
  .hp-mobile-panel { width: 90vw; max-width: 360px; }
  .hero-title { overflow-wrap: anywhere; }
  .hero-subtitle { max-width: 100%; }
  .footer-menu { grid-template-columns: 1fr; }
  .footer-menu-group ul { gap: 8px; }
}

@media (max-width: 480px) {
  .whatsapp-button a {
    padding: 12px;
  }
  .whatsapp-button .whatsapp-text {
    display: none;
  }
  .hp-header .hp-search form > div { padding: 10px; }
  .hp-header .hp-search input { font-size: 14px; }
  .hp-icon-btn, .btn, button, input[type="submit"], input[type="button"] {
    min-height: 44px;
    min-width: 44px;
  }
  .hp-search-link { padding: 8px; }
  .hp-search-img { width: 36px; height: 36px; }
  .hp-search-title { font-size: 13px; }
  .hp-search-sub { font-size: 11px; }
  .checkout-social-modal-inner { max-width: 92vw; }
  .checkout-social-modal-caption { padding: 0.75rem 1rem 1rem; }
}

@media (max-width: 360px) {
  .hp-header .hp-icon-btn { width: 42px; height: 42px; }
  .hp-mobile-panel { width: 92vw; }
  .blog-card { width: 88vw; min-width: 88vw; }
}
