/**
 * MegaStore - Global Stylesheet — AQUARIUM AMAZON (Dark + Green Neon)
 * Tema escuro adaptado do modelo aquarium_amazon_loja_virtual.html
 *
 * Design System:
 * - Background: #0a0a0a (preto), #111111 (preto2), #1a1a1a (preto3)
 * - Accent: #c8f530 (verde neon), #9dc41a (verde2)
 * - Text: #ffffff (branco), #888888 (cinza), #444444 (cinza2)
 * - Card: #141414 (card bg)
 * - Fonts: Rajdhani (headings/logo), Dancing Script (cursive), Exo 2 (body)
 */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  /* Aquarium Amazon dark scale */
  --preto: #0a0a0a;
  --preto2: #111111;
  --preto3: #1a1a1a;
  --verde: #c8f530;
  --verde2: #9dc41a;
  --branco: #ffffff;
  --cinza: #888888;
  --cinza2: #444444;
  --card: #141414;

  /* Legacy compat mapping */
  --green-deep: #0a0a0a;
  --green-mid: #111111;
  --green-bright: #c8f530;
  --green-light: #d4ff40;
  --green-pale: #1a1a1a;
  --sand: #c8f530;
  --sand-dark: #9dc41a;
  --earth: #c8f530;

  /* Emerald scale (kept for compat) */
  --emerald-50: #1a1a1a;
  --emerald-100: #141414;
  --emerald-200: #1e1e1e;
  --emerald-300: #2a2a2a;
  --emerald-400: #333333;
  --emerald-500: #c8f530;
  --emerald-600: #9dc41a;
  --emerald-700: #7a9a15;
  --emerald-800: #0a0a0a;
  --emerald-900: #080808;

  /* Teal scale (kept for compat) */
  --teal-50: #111111;
  --teal-100: #1a1a1a;
  --teal-200: #222222;
  --teal-300: #2a2a2a;
  --teal-400: #333333;
  --teal-500: #c8f530;
  --teal-600: #9dc41a;
  --teal-700: #7a9a15;
  --teal-800: #111111;
  --teal-900: #0a0a0a;

  /* Gray / Slate scale */
  --gray-50: #1a1a1a;
  --gray-100: #141414;
  --gray-200: #1e1e1e;
  --gray-300: #2a2a2a;
  --gray-400: #888888;
  --gray-500: #999999;
  --gray-600: #666666;
  --gray-700: #444444;
  --gray-800: #222222;
  --gray-900: #111111;

  /* Status colors */
  --green-500: #c8f530;
  --green-600: #9dc41a;
  --yellow-500: #f0c420;
  --yellow-600: #d4a817;
  --red-500: #e53e3e;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --blue-500: #6ea8fe;
  --blue-600: #4a8fe7;
  --amber-500: #f59e0b;
  --amber-700: #b45309;

  /* Layout */
  --border-radius: 4px;
  --border-radius-xl: 8px;
  --border-radius-full: 9999px;
  --border-radius-2xl: 12px;

  /* Shadows — dark tinted */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* Container */
  --container-max: 1300px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--branco);
  background-color: var(--preto);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 1380px;
  margin: 0 auto;
}

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

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

button {
  font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  cursor: pointer;
}

input, select, textarea {
  font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: inherit;
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-sm { font-size: 0.8125rem; line-height: 1.5; }
.text-xs { font-size: 0.75rem; line-height: 1.5; }
.text-base { font-size: 1rem; line-height: 1.5; }
.text-lg { font-size: 1.125rem; line-height: 1.75; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-muted { color: var(--cinza); }
.text-danger { color: var(--red-500); }
.text-warning { color: var(--yellow-500); }
.text-success { color: var(--verde); }

.text-center { text-align: center; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }

.hidden { display: none !important; }

.w-full { width: 100%; }

.mb-6 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-auto { margin-top: auto; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.required { color: var(--red-500); }

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

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   Header — AQUARIUM AMAZON (dark)
   ========================================================================== */
.header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #080808;
  box-shadow: 0 1px 0 rgba(200, 245, 48, 0.05), 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ── Top bar ── */
.header-top {
  background: #080808;
  border-bottom: none;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
}

/* Logo */
.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 440px;
  height: 100px;
  overflow: hidden;
  transition: opacity 0.2s;
}
.header-logo:hover { opacity: 0.85; }

.header-logo img {
  display: block;
  max-height: 100px;
  max-width: 440px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header-logo-circle {
  display: none;
}

@media (max-width: 480px) {
  .header-logo {
    max-width: 200px;
    height: 50px;
  }
  .header-logo img {
    max-height: 50px;
    max-width: 200px;
  }
  .header-logo-text {
    font-size: 1rem;
    max-width: 90px;
  }
  .header-top-inner {
    padding: 0.4rem 0.75rem;
    gap: 0.5rem;
  }
}

.header-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  max-width: 120px;
}

.logo-icon { font-size: 1.5rem; }

/* Search */
.header-search {
  flex: 1;
  max-width: 380px;
  display: flex;
  align-items: center;
  background: #111111;
  border: 1.5px solid var(--cinza2);
  border-radius: 4px;
  overflow: hidden;
  height: 38px;
  min-width: 140px;
  transition: border-color 0.2s;
}

.header-search:focus-within {
  border-color: var(--verde);
}

@media (max-width: 640px) {
  .header-search {
    height: 38px;
  }
  .header-search-input {
    font-size: 0.82rem;
    padding: 0 0.6rem;
  }
  .header-search-btn {
    width: 40px;
  }
}

.header-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 1rem;
  font-size: 0.9rem;
  color: var(--branco);
  background: transparent;
  height: 100%;
}

.header-search-input::placeholder { color: #666; }

.header-search-btn {
  width: 44px;
  height: 100%;
  background: var(--verde);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--preto);
  flex-shrink: 0;
  transition: background 0.2s;
}
.header-search-btn:hover { background: #d4ff40; }

/* Right actions group */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Person / Account button — círculo com ícone de pessoa */
.header-person-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--preto);
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(200, 245, 48, 0.2);
}
.header-person-btn:hover {
  background: #d4ff40;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 245, 48, 0.3);
}

.header-action-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.header-action-group:hover {
  background: rgba(200, 245, 48, 0.08);
}

.action-svg-icon {
  color: #fff;
  flex-shrink: 0;
}

.action-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.action-label {
  font-size: 0.82rem;
  color: #ffffff;
  display: block;
}

.action-text strong {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.action-chevron {
  font-size: 0.65rem;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .header-action-group { display: none; }
}

/* Login link buttons inside header */
@media (max-width: 900px) {
  .header-login-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    border: 1.5px solid var(--cinza2);
    font-size: 0.8rem;
    background: transparent;
    white-space: nowrap;
  }
  .header-login-link:hover {
    border-color: var(--verde);
    color: var(--verde);
  }
}

.header-login-link {
  background: none;
  border: none;
  color: var(--branco);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.header-login-link:hover { color: var(--verde); }

/* Cart button */
.header-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--verde);
  color: var(--preto);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(200, 245, 48, 0.2);
}
.header-cart-btn:hover {
  background: #d4ff40;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 245, 48, 0.3);
}
.header-cart-btn svg {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: #EF4444;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid #080808;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.cart-badge[data-count="0"],
.cart-badge:empty { display: none; }

/* Mobile menu btn */
.mobile-menu-btn,
.header-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--cinza2);
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--cinza);
  transition: all 0.2s;
}
.mobile-menu-btn:hover,
.header-mobile-toggle:hover { border-color: var(--verde); color: var(--verde); }

@media (max-width: 768px) {
  .mobile-menu-btn,
  .header-mobile-toggle { display: flex; }
}

/* ── Nav bar ── */
.header-nav-bar {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #222;
}

.header-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.header-nav-inner::-webkit-scrollbar { display: none; }

.nav-bar-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 1.1rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cinza);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav-bar-link:hover,
.nav-bar-link.active {
  color: var(--verde);
  border-bottom-color: var(--verde);
}

.nav-bar-all {
  color: var(--verde);
  font-weight: 700;
  gap: 0.5rem;
  letter-spacing: 1.5px;
}

.nav-chevron {
  font-size: 0.6rem;
  opacity: 0.7;
}

/* legacy classes (kept for JS compat) */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.header-nav {
  display: none;
}

.nav-link,
.header-nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cinza);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active,
.header-nav-link:hover {
  color: var(--verde);
}

.header-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  border: 1.5px solid var(--cinza2);
  background: transparent;
  font-size: 1.25rem;
  color: var(--cinza);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.header-action-btn:hover {
  border-color: var(--verde);
  color: var(--verde);
}

/* ==========================================================================
   User Menu & Dropdown
   ========================================================================== */
.user-menu {
  position: relative;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--branco);
  font-size: 0.875rem;
  transition: background var(--transition-fast);
}

.user-menu-btn:hover {
  background-color: rgba(200, 245, 48, 0.05);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--preto);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 200px;
  background: #111111;
  border: 1px solid #222;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  overflow: hidden;
}

.user-dropdown.open {
  display: block;
}

.user-dropdown-divider {
  height: 1px;
  background: #222;
  margin: 0.25rem 0;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: none;
  background: transparent;
  font-size: 0.8125rem;
  color: var(--branco);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast);
}

.user-dropdown-item:hover {
  background-color: rgba(200, 245, 48, 0.05);
}

.user-dropdown-item.danger {
  color: var(--red-500);
}

.user-dropdown-item.danger:hover {
  background-color: rgba(229, 62, 62, 0.1);
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: var(--preto);
  padding: 1.5rem;
  overflow-y: auto;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}

.mobile-menu.open {
  display: block;
  animation: fadeIn 0.2s ease;
}

/* Cabeçalho do menu mobile com botão fechar */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--cinza2);
  background: transparent;
  color: var(--cinza);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}
.mobile-menu-close:hover { border-color: var(--verde); color: var(--verde); }

/* Busca dentro do menu */
.mobile-menu-search {
  margin-bottom: 1.25rem;
}

.mobile-menu-search .header-search {
  display: flex !important;
  width: 100%;
  height: 46px;
}

/* Separador */
.mobile-menu-divider {
  height: 1px;
  background: #222;
  margin: 1rem 0;
}

/* Botões de conta no menu mobile */
.mobile-menu-account {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.mobile-menu-account .btn {
  flex: 1;
  justify-content: center;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-nav .nav-link {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--branco);
}

.mobile-menu-nav .nav-link:hover {
  background-color: rgba(200, 245, 48, 0.05);
  color: var(--verde);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px);
}

.btn:active {
  transform: scale(0.98);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background: var(--verde);
  color: var(--preto);
}

.btn-primary:hover {
  background: #d4ff40;
  box-shadow: 0 4px 16px rgba(200, 245, 48, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--branco);
  border: 1px solid var(--cinza2);
}

.btn-secondary:hover {
  border-color: var(--verde);
  color: var(--verde);
}

.btn-outline {
  background: transparent;
  color: var(--branco);
  border: 1px solid var(--cinza2);
}

.btn-outline:hover {
  border-color: var(--verde);
  color: var(--verde);
}

.btn-ghost {
  background: transparent;
  color: var(--verde);
}

.btn-ghost:hover {
  background: rgba(200, 245, 48, 0.05);
}

.btn-danger {
  background: var(--red-600);
  color: #fff;
}

.btn-danger:hover {
  background: var(--red-700);
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--preto);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--branco);
  margin-bottom: 0.375rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--cinza2);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.875rem;
  color: var(--branco);
  background: #111111;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(200, 245, 48, 0.1);
}

.form-input::placeholder {
  color: #555;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23888' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.form-input-icon {
  position: relative;
}

.form-input-icon .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  pointer-events: none;
}

.form-input-icon .form-input {
  padding-left: 2.5rem;
}

.form-error {
  display: none;
  font-size: 0.75rem;
  color: var(--red-500);
  margin-top: 0.25rem;
}

.form-error:not(:empty) {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-hint {
  font-size: 0.75rem;
  color: #555;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Badges
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-primary {
  background: var(--verde);
  color: var(--preto);
}

.badge-discount {
  background: rgba(229, 62, 62, 0.15);
  color: var(--red-500);
  font-weight: 600;
}

.badge-featured {
  background: rgba(200, 245, 48, 0.1);
  color: var(--verde);
  font-weight: 600;
  border: 1px solid rgba(200, 245, 48, 0.3);
}

/* Status badge variants */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: capitalize;
}

.status-badge.pendente {
  background: rgba(240, 196, 32, 0.12);
  color: #f0c420;
  border: 1px solid rgba(240, 196, 32, 0.25);
}

.status-badge.confirmado,
.status-badge.processando {
  background: rgba(110, 168, 254, 0.1);
  color: #6ea8fe;
  border: 1px solid rgba(110, 168, 254, 0.25);
}

.status-badge.enviado {
  background: rgba(147, 130, 255, 0.1);
  color: #9382ff;
  border: 1px solid rgba(147, 130, 255, 0.25);
}

.status-badge.entregue {
  background: rgba(200, 245, 48, 0.1);
  color: var(--verde);
  border: 1px solid rgba(200, 245, 48, 0.25);
}

.status-badge.cancelado {
  background: rgba(229, 62, 62, 0.1);
  color: var(--red-500);
  border: 1px solid rgba(229, 62, 62, 0.25);
}

/* ==========================================================================
   Hero Slider — AQUARIUM AMAZON
   ========================================================================== */
.hero-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--preto);
  user-select: none;
}

.hero-slider-wrapper::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
  background: radial-gradient(ellipse, rgba(200, 245, 48, 0.04) 0%, transparent 70%);
  animation: morph 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-slider-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--verde) 1px, transparent 1px), linear-gradient(90deg, var(--verde) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.02;
  z-index: 1;
  pointer-events: none;
}

@keyframes morph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%; }
  50% { border-radius: 30% 60% 40% 70% / 60% 30% 70% 40%; }
}

.hero-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 340px;
  overflow: hidden;
  background: var(--preto);
  border-bottom: 1px solid #1a1a1a;
}

@media (min-width: 768px) {
  .hero-slide { min-height: 390px; }
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  transition: opacity 0.4s;
}

.hero-slide-content {
  position: relative;
  z-index: 10;
  flex: 1;
  padding: 3.5rem 3rem;
  max-width: 55%;
}

@media (max-width: 767px) {
  .hero-slide-content {
    max-width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
  }
}

.hero-slide-tag {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--verde2);
  color: var(--verde);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
  width: fit-content;
}

@media (max-width: 767px) {
  .hero-slide-tag {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-slide-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 0.75rem;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: 6px;
}

.hero-slide-title span {
  color: var(--verde);
  display: block;
}

@media (min-width: 768px) {
  .hero-slide-title { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
  .hero-slide-title { font-size: 4rem; }
}

.hero-slide-sub {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: var(--verde);
  opacity: 0.85;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-slide-desc {
  font-size: 0.95rem;
  color: var(--cinza);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 420px;
  font-weight: 300;
}

@media (max-width: 767px) {
  .hero-slide-desc { margin-left: auto; margin-right: auto; }
}

.hero-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--verde);
  color: var(--preto);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.hero-slide-btn:hover {
  background: #d4ff40;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 245, 48, 0.3);
}

.hero-slide.no-side-image .hero-slide-content {
  max-width: 80%;
}

.hero-slide-image {
  position: relative;
  z-index: 5;
  width: 52%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

@media (max-width: 767px) {
  .hero-slide-image { display: none; }
  .hero-slide-bg { opacity: 0.15; }
  .hero-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--verde), transparent);
    z-index: 5;
  }
}

.hero-slide-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

.hero-slide-image::before,
.hero-slide-image::after {
  display: none;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 72px;
  height: 72px;
  background: none;
  border: none;
  color: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 3.8rem;
  transition: all 0.2s;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}

.slider-arrow:hover {
  background: none;
  border-color: transparent;
  color: var(--verde);
  transform: translateY(-50%) scale(1.15);
}

.slider-arrow-prev { left: 0; }
.slider-arrow-next { right: 0; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 30;
}

.slider-dot {
  width: 8px;
  height: 8px;
  background: rgba(200, 245, 48, 0.2);
  border: 1.5px solid rgba(200, 245, 48, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--verde);
  width: 24px;
}

/* Stats row in hero */
.hero-stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.hero-stats-row .stat {
  display: flex;
  flex-direction: column;
}

.hero-stats-row .stat strong {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--verde);
  letter-spacing: 2px;
}

.hero-stats-row .stat span {
  font-size: 0.72rem;
  color: var(--cinza);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .hero-stats-row {
    justify-content: center;
    gap: 1.5rem;
  }
}

/* Trust bar below slider */
.hero-trust-bar {
  background: #0e0e0e;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 639px) {
  .hero-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-trust-item {
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
  .hero-trust-item:nth-child(even) { border-right: none; }
  .hero-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid #1a1a1a;
  }
  .hero-trust-text strong { font-size: 0.78rem; }
  .hero-trust-text span   { font-size: 0.68rem; }
  .hero-trust-icon        { font-size: 1.15rem; }
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-right: 1px solid #1a1a1a;
}

.hero-trust-item:last-child {
  border-right: none;
}

.hero-trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--verde);
}

.hero-trust-text strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  letter-spacing: 1px;
}

.hero-trust-text span {
  font-size: 0.68rem;
  color: var(--cinza);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Slide enter animation */
@keyframes slideTextIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-slide.is-active .hero-slide-tag,
.hero-slide.is-active .hero-slide-title,
.hero-slide.is-active .hero-slide-sub,
.hero-slide.is-active .hero-slide-desc,
.hero-slide.is-active .hero-slide-btn {
  animation: slideTextIn 0.55s ease both;
}

.hero-slide.is-active .hero-slide-title { animation-delay: 0.05s; }
.hero-slide.is-active .hero-slide-sub   { animation-delay: 0.1s; }
.hero-slide.is-active .hero-slide-desc  { animation-delay: 0.15s; }
.hero-slide.is-active .hero-slide-btn   { animation-delay: 0.2s; }

/* ==========================================================================
   Promo Banner
   ========================================================================== */
.promo-banner {
  background: var(--card);
  border: 1px solid #222;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 245, 48, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 640px) {
  .promo-banner {
    padding: 2.5rem;
  }
}

.promo-banner h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.promo-banner p {
  font-size: 1.125rem;
  color: var(--cinza);
  margin-bottom: 1.5rem;
}

.promo-banner .btn {
  background: var(--verde);
  color: var(--preto);
  font-weight: 700;
}

.promo-banner .btn:hover {
  background: #d4ff40;
}

/* ==========================================================================
   Section Layout
   ========================================================================== */
.section,
.page-section {
  padding: 3.5rem 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1.25rem;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
  }
}

.section-subtitle {
  font-size: 0.82rem;
  color: var(--cinza);
  margin-top: 0.3rem;
  letter-spacing: 1px;
}

.section-link {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--verde);
  text-decoration: none;
  border: 1px solid var(--cinza2);
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  background: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-link:hover {
  border-color: var(--verde);
  background: rgba(200, 245, 48, 0.05);
}

/* ==========================================================================
   Product Grid & Cards
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Product Card — AQUARIUM AMAZON
   ========================================================================== */
.product-card {
  background: var(--card);
  border: 1px solid #1e1e1e;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #2a2a2a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: #111;
  overflow: hidden;
  cursor: pointer;
  border-bottom: 1px solid #1e1e1e;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #444;
  background: #111;
}

.product-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 2;
}

.product-card-out-of-stock {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.product-card-out-of-stock span {
  padding: 0.375rem 1rem;
  background: var(--preto2);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card-wishlist {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 4;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  transition: all var(--transition-fast);
  border-radius: 0;
  backdrop-filter: none;
}

.product-card-wishlist:hover {
  transform: scale(1.15);
  color: rgba(255,255,255,0.7);
}

.product-card-wishlist.active {
  color: var(--verde);
}

.product-card-wishlist svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.8));
}

.product-card-body {
  padding: 1rem 1.1rem 1.15rem;
  cursor: pointer;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-card-category {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.67rem;
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.product-card-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
}

.product-card-pix-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.2rem;
}

.product-card-pix-price .pix-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
}

.product-card-pix-price .pix-label {
  font-size: 0.76rem;
  color: var(--cinza);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-pix-price .pix-discount {
  font-size: 0.72rem;
  color: var(--cinza);
  width: 100%;
  margin-top: 0.1rem;
}

.product-card-original-price {
  font-size: 0.78rem;
  color: #555;
  text-decoration: line-through;
  margin-bottom: 0.2rem;
}

.product-card-installments {
  font-size: 0.78rem;
  color: var(--cinza);
  margin-bottom: 0.15rem;
}

/* Card description snippet */
.product-card-desc {
  font-size: 0.82rem;
  color: var(--cinza);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}

@media (max-width: 639px) {
  .product-card-desc {
    -webkit-line-clamp: 2;
  }
}

.product-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid #1a1a1a;
}

.product-card-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--cinza2);
  overflow: hidden;
  height: 38px;
  flex-shrink: 0;
}

.product-card-qty .qty-btn {
  width: 30px;
  height: 100%;
  border: none;
  background: #1a1a1a;
  color: var(--branco);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-qty .qty-btn:hover {
  background: #222;
  color: var(--verde);
}

.product-card-qty .qty-input {
  width: 36px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--cinza2);
  border-right: 1px solid var(--cinza2);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--branco);
  background: #111;
  outline: none;
  -moz-appearance: textfield;
}

.product-card-qty .qty-input::-webkit-inner-spin-button,
.product-card-qty .qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.product-card-add-btn {
  flex: 1;
  height: 38px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0 0.75rem;
}

/* Price components */
.price-current {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--verde);
}

.price-original {
  font-size: 0.8125rem;
  color: #555;
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red-500);
  background: rgba(229, 62, 62, 0.1);
  padding: 0.125rem 0.375rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Skeleton / Loading Cards */
.skeleton-card {
  background: var(--card);
  border: 1px solid #1e1e1e;
  overflow: hidden;
}

.skeleton-image {
  aspect-ratio: 1;
  background: #111;
}

.skeleton-card-body {
  padding: 1rem;
}

.skeleton {
  background: #1e1e1e;
  border-radius: 4px;
  animation: pulse 1.5s ease-in-out infinite;
}

.skeleton-text {
  height: 0.75rem;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Category Grid & Cards
   ========================================================================== */
.category-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-grid {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem;
  scroll-behavior: smooth;
  flex: 1;
}

.category-grid::-webkit-scrollbar {
  display: none;
}

.category-arrow {
  position: relative;
  top: unset;
  transform: unset;
  flex-shrink: 0;
  z-index: 10;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.8rem;
  transition: all 0.2s;
  box-shadow: none;
}

.category-arrow:hover {
  border-color: transparent;
  background: transparent;
  color: white;
}

.category-arrow-left { left: unset; }
.category-arrow-right { right: unset; }

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0.5rem;
  min-width: 90px;
  flex: 1;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid #222;
}

.category-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--verde);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}

.category-card:hover {
  border-color: #333;
  background: #1a1a1a;
  transform: translateY(-2px);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  flex-shrink: 0;
}

.category-card-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-icon {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.category-card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  filter: drop-shadow(0 0 6px rgba(200,245,48,0.3));
}

.category-card-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #ccc;
  line-height: 1.3;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.category-card-count {
  font-size: 0.68rem;
  color: var(--cinza);
}

/* Catalog sidebar */
.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .catalog-layout {
    grid-template-columns: 260px 1fr;
  }
}

.catalog-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.catalog-sidebar-card {
  background: var(--card);
  border: 1px solid #1e1e1e;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.catalog-sidebar-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.category-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--branco);
  cursor: pointer;
  transition: all 0.2s;
}

.category-list-item:hover {
  background: rgba(200, 245, 48, 0.05);
}

.category-list-item.active {
  background: var(--verde);
  color: var(--preto);
  font-weight: 700;
}

.category-list-item .count {
  font-size: 0.72rem;
  color: var(--cinza);
  background: #1a1a1a;
  padding: 0.1rem 0.4rem;
}

.category-list-item.active .count {
  background: rgba(0, 0, 0, 0.15);
  color: var(--preto);
}

/* Catalog main area */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.catalog-toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.catalog-results-count {
  font-size: 0.875rem;
  color: var(--cinza);
  font-family: 'Exo 2', sans-serif;
}

.catalog-sort .form-select {
  min-width: 160px;
}

.mobile-filter-btn {
  display: none;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--cinza2);
  color: var(--branco);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .mobile-filter-btn { display: inline-flex; align-items: center; gap: 0.5rem; }
}

.mobile-filter-btn:hover {
  border-color: var(--verde);
  color: var(--verde);
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 2rem;
}

.pagination-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 0.5rem;
  border: 1px solid var(--cinza2);
  background: transparent;
  color: var(--branco);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.pagination-btn:hover {
  border-color: var(--verde);
  color: var(--verde);
}

.pagination-btn.active {
  background: var(--verde);
  border-color: var(--verde);
  color: var(--preto);
  font-weight: 700;
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ==========================================================================
   No Results
   ========================================================================== */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
}

.no-results-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.no-results h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  color: var(--branco);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.no-results p {
  color: var(--cinza);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Product Detail
   ========================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.breadcrumb-item {
  color: var(--cinza);
  cursor: pointer;
  transition: color 0.2s;
  font-family: 'Exo 2', sans-serif;
}

.breadcrumb-item:hover {
  color: var(--verde);
}

.breadcrumb-item.active {
  color: var(--branco);
  font-weight: 600;
  cursor: default;
}

.breadcrumb-separator {
  color: #333;
}

.product-detail {
  padding-bottom: 2rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-gallery-main {
  overflow: hidden;
  background: #111;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1e1e1e;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-placeholder {
  font-size: 5rem;
  color: #333;
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-gallery-thumbs::-webkit-scrollbar { display: none; }

.product-gallery-thumb {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
  background: #111;
}

.product-gallery-thumb.active {
  border-color: var(--verde);
}

.product-gallery-thumb:hover {
  border-color: var(--verde2);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-info-category {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.72rem;
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.product-info-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-info-rating {
  font-size: 0.9rem;
  color: var(--verde);
}

.product-info-rating span {
  color: var(--cinza);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.product-info-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.product-info-stock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.stock-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.stock-indicator.in-stock {
  background: var(--verde);
  box-shadow: 0 0 0 3px rgba(200, 245, 48, 0.2);
}

.stock-indicator.low-stock {
  background: #f0c420;
  box-shadow: 0 0 0 3px rgba(240, 196, 32, 0.2);
}

.stock-indicator.out-of-stock {
  background: var(--red-500);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
}

.product-info-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.product-info-description {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #222;
}

.product-info-description h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  color: var(--branco);
  margin-bottom: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-info-description p {
  font-size: 1rem;
  color: var(--cinza);
  line-height: 1.8;
}

/* ==========================================================================
   Cart Drawer
   ========================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: #0e0e0e;
  border-left: 1px solid #222;
  z-index: 91;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  padding-right: env(safe-area-inset-right);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #222;
}

.cart-drawer-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--cinza2);
  background: transparent;
  color: var(--cinza);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}

.cart-drawer-close:hover {
  border-color: var(--verde);
  color: var(--verde);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
}

.cart-drawer-footer {
  border-top: 1px solid #222;
  padding: 1.25rem 1.5rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.cart-empty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.3;
}

.cart-empty h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  color: var(--branco);
  margin-bottom: 0.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cart-empty p {
  font-size: 0.85rem;
  color: var(--cinza);
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}

.cart-item:hover {
  background: rgba(200, 245, 48, 0.02);
}

.cart-item-image {
  width: 64px;
  height: 64px;
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1e1e1e;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--verde);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--cinza2);
}

.quantity-selector button {
  width: 30px;
  height: 32px;
  border: none;
  background: #1a1a1a;
  color: var(--branco);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-selector button:hover {
  background: #222;
  color: var(--verde);
}

.quantity-selector input {
  width: 36px;
  height: 32px;
  border: none;
  border-left: 1px solid var(--cinza2);
  border-right: 1px solid var(--cinza2);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--branco);
  background: #111;
  outline: none;
  -moz-appearance: textfield;
}

.quantity-selector input::-webkit-inner-spin-button,
.quantity-selector input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
  padding: 0.25rem;
  color: var(--cinza);
}

.cart-item-remove:hover {
  transform: scale(1.2);
  color: var(--red-500);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  font-size: 0.9rem;
  color: var(--cinza);
}

.cart-summary-row.total {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--branco);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid #222;
}

.shipping-free {
  color: var(--verde);
  font-weight: 600;
}

.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ==========================================================================
   Modal (Login)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 1rem;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #111;
  border: 1px solid #222;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #222;
}

.modal-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.modal-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--cinza2);
  background: transparent;
  color: var(--cinza);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}

.modal-close:hover {
  border-color: var(--verde);
  color: var(--verde);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #1a1a1a;
}

.login-error {
  display: none;
  background: rgba(229, 62, 62, 0.1);
  color: var(--red-500);
  border: 1px solid rgba(229, 62, 62, 0.25);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-family: 'Exo 2', sans-serif;
}

.login-error.show {
  display: block;
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #111;
  border: 1px solid #222;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  min-width: 280px;
  max-width: 400px;
  animation: slideInRight 0.3s ease;
  border-left: 4px solid var(--verde);
}

.toast-success { border-left-color: var(--verde); }
.toast-error { border-left-color: var(--red-500); }
.toast-warning { border-left-color: #f0c420; }

.toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
  font-size: 0.85rem;
  color: var(--branco);
  font-family: 'Exo 2', sans-serif;
}

.toast-close {
  background: none;
  border: none;
  color: var(--cinza);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.25rem;
  transition: color 0.2s;
}

.toast-close:hover {
  color: var(--branco);
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

.toast.removing {
  animation: slideOutRight 0.2s ease forwards;
}

@keyframes slideOutRight {
  to { opacity: 0; transform: translateX(100px); }
}

/* ==========================================================================
   Back to Top
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 80;
  width: 44px;
  height: 44px;
  background: var(--verde);
  color: var(--preto);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(200, 245, 48, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #d4ff40;
}

/* ==========================================================================
   Footer — AQUARIUM AMAZON
   ========================================================================== */
.footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--verde);
}

.footer-description {
  font-size: 0.82rem;
  color: var(--cinza);
  line-height: 1.7;
  max-width: 290px;
  font-weight: 300;
}

.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.82rem;
  color: var(--cinza);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
}

.footer-link:hover {
  color: var(--verde);
}

.footer-contact-item {
  font-size: 0.82rem;
  color: var(--cinza);
  padding: 0.25rem 0;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1a1a1a;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--cinza2);
  font-family: 'Exo 2', sans-serif;
}

/* ==========================================================================
   WhatsApp Float
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: wppPulse 2.5s infinite;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes wppPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Checkout / Order Confirmation
   ========================================================================== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .checkout-layout {
    grid-template-columns: 1fr 380px;
  }
}

.checkout-card {
  background: var(--card);
  border: 1px solid #1e1e1e;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.checkout-card h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.order-confirmation {
  text-align: center;
  padding: 4rem 2rem;
}

.order-confirmation-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.order-confirmation h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  color: var(--branco);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.order-confirmation p {
  color: var(--cinza);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Spinner & Loading
   ========================================================================== */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #222;
  border-top-color: var(--verde);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.spinner-lg {
  width: 44px;
  height: 44px;
  border-width: 4px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.page-enter {
  animation: fadeIn 0.3s ease;
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.1s; }
.stagger-3 { animation-delay: 0.15s; }
.stagger-4 { animation-delay: 0.2s; }
.stagger-5 { animation-delay: 0.25s; }
.stagger-6 { animation-delay: 0.3s; }

/* ==========================================================================
   FISH — Botão WhatsApp (cards e detalhe)
   ========================================================================== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: #25d366;
  color: #fff !important;
  border: none;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-whatsapp.btn-block {
  width: 100%;
}

/* ==========================================================================
   FISH — Card overrides
   ========================================================================== */
.product-card--fish .product-card-footer--fish {
  padding: 0.6rem 0.75rem 0.75rem;
}

.product-card--fish .product-card-footer--fish .btn-whatsapp {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
}

.badge-fish {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(200, 245, 48, 0.9);
  color: var(--preto);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card-fish-notice {
  font-size: 0.72rem;
  color: var(--cinza);
  margin-top: 0.25rem;
  font-style: italic;
}

.fish-pickup-badge {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fish-sale-badge {
  background: var(--verde);
  color: var(--preto);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 0.45rem 0.5rem;
  pointer-events: none;
}

/* ==========================================================================
   FISH — Detalhe do produto
   ========================================================================== */
.fish-detail-notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(200, 245, 48, 0.05);
  border: 1px solid rgba(200, 245, 48, 0.2);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}

.fish-detail-notice .fish-notice-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.fish-detail-notice strong {
  display: block;
  color: var(--verde);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.fish-detail-notice p {
  color: var(--cinza);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

/* --- Ficha Técnica do Animal --- */
.fish-detail-specs {
  margin-top: 1.5rem;
  border-top: 1px solid #1f1f1f;
  padding-top: 1.25rem;
}
.fish-detail-specs h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cinza);
  margin: 0 0 0.75rem 0;
}
.fish-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.fish-specs-table tr {
  border-bottom: 1px solid #1a1a1a;
}
.fish-specs-table tr:last-child {
  border-bottom: none;
}
.fish-specs-table td {
  padding: 0.5rem 0.25rem;
  font-size: 0.875rem;
  vertical-align: top;
}
.spec-label {
  color: var(--cinza);
  width: 40%;
  font-weight: 500;
}
.spec-value {
  color: var(--branco);
}
.spec-value em {
  font-style: italic;
  color: #aaa;
}
.fish-tag {
  display: inline-block;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.75rem;
  color: var(--cinza);
  margin: 2px 2px 2px 0;
}

/* ==========================================================================
   FISH — Home section
   ========================================================================== */
.fish-home-section {
  background: linear-gradient(180deg, #0e0e0e 0%, var(--preto) 100%);
  border-top: 1px solid #222;
}

/* Fish Carousel */
.fish-carousel-wrapper {
  position: relative;
  margin-top: 0.5rem;
}

.fish-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.5rem 0;
  -ms-overflow-style: none;
}

.fish-carousel::-webkit-scrollbar {
  display: none;
}

.fish-carousel .product-card {
  flex: 0 0 calc(50% - 0.5rem);
  max-width: calc(50% - 0.5rem);
  width: calc(50% - 0.5rem);
}

@media (min-width: 640px) {
  .fish-carousel .product-card {
    flex: 0 0 calc(33.333% - 0.67rem);
    max-width: calc(33.333% - 0.67rem);
    width: calc(33.333% - 0.67rem);
  }
}

@media (min-width: 1024px) {
  .fish-carousel .product-card {
    flex: 0 0 calc(25% - 0.75rem);
    max-width: calc(25% - 0.75rem);
    width: calc(25% - 0.75rem);
  }
}

.fish-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: auto;
  height: auto;
  background: none;
  border: none;
  color: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  transition: all 0.2s;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.fish-arrow:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.15);
}

.fish-arrow-left { left: -22px; }
.fish-arrow-right { right: -22px; }

/* ==========================================================================
   FISH — Catalog page banner
   ========================================================================== */
.fish-catalog-banner {
  position: relative;
  overflow: hidden;
  background: var(--preto2);
  color: #fff;
  padding: 3.5rem 0 2.5rem;
}

.fish-catalog-banner-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200, 245, 48, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(157, 196, 26, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.fish-catalog-banner-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .fish-catalog-banner-content {
    grid-template-columns: 1fr;
  }
}

.fish-catalog-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200, 245, 48, 0.08);
  border: 1px solid rgba(200, 245, 48, 0.25);
  padding: 0.3rem 0.9rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--verde);
}

.fish-catalog-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.fish-catalog-sub {
  font-size: 1rem;
  color: var(--cinza);
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
  font-weight: 300;
}

.fish-catalog-notice-box {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: rgba(200, 245, 48, 0.04);
  border: 1px solid rgba(200, 245, 48, 0.15);
  padding: 1.25rem 1.5rem;
  max-width: 340px;
}

.fish-notice-icon-lg {
  font-size: 2.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.fish-catalog-notice-box strong {
  display: block;
  font-size: 0.9rem;
  color: var(--verde);
  margin-bottom: 0.4rem;
}

.fish-catalog-notice-box p {
  font-size: 0.8rem;
  color: var(--cinza);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   FISH — Trust bar below banner
   ========================================================================== */
.fish-trust-bar {
  background: #0a0a0a;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.fish-trust-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.fish-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cinza);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'Exo 2', sans-serif;
}

.fish-trust-item span {
  color: var(--verde);
}

/* ==========================================================================
   Scrollbar Styling (dark theme)
   ========================================================================== */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--preto);
}

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
}

::-webkit-scrollbar-thumb:hover {
  background: #3a3a3a;
}

/* ==========================================================================
   Scientific Name — Card Badge
   ========================================================================== */
.product-card-scientific {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  padding: 0.3rem 0.55rem;
  background: linear-gradient(135deg, rgba(0,200,100,0.10) 0%, rgba(0,150,80,0.06) 100%);
  border: 1px solid rgba(0,200,100,0.20);
  border-radius: 20px;
  width: fit-content;
  max-width: 100%;
}

.product-card-scientific .scientific-leaf {
  font-size: 0.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.product-card-scientific em {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: #5ddb9a;
  letter-spacing: 0.3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card:hover .product-card-scientific {
  background: linear-gradient(135deg, rgba(0,200,100,0.16) 0%, rgba(0,150,80,0.10) 100%);
  border-color: rgba(0,200,100,0.35);
  transition: all 0.25s ease;
}

/* =========================================================
   Login / Registro — Divisor Google
   ========================================================= */
.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-muted, #888);
  font-size: 0.8rem;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
