/* ============================================================
   SISTEMA PESCA — loja.css  v2.0
   Deep ocean theme · Modern e-commerce 2024/2025
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --lj-primary:       #1a6b9a;
  --lj-primary-dark:  #0d4f75;
  --lj-primary-light: #2a8abf;
  --lj-navy:          #0d2137;
  --lj-navy-mid:      #112840;
  --lj-accent:        #20c997;
  --lj-accent-dark:   #17a589;
  --lj-danger:        #e53e3e;
  --lj-gold:          #f6ad55;
  --lj-text:          #1a2535;
  --lj-text-soft:     #4a5568;
  --lj-muted:         #718096;
  --lj-border:        #e2e8f0;
  --lj-bg:            #f7fafc;
  --lj-bg-alt:        #f0f7ff;
  --lj-white:         #ffffff;
  --lj-shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --lj-shadow:        0 4px 16px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --lj-shadow-lg:     0 10px 40px rgba(0,0,0,.15), 0 4px 12px rgba(0,0,0,.08);
  --lj-radius-sm:     8px;
  --lj-radius:        12px;
  --lj-radius-lg:     18px;
  --lj-transition:    0.25s ease;
  --lj-header-h:      68px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--lj-text);
  background: var(--lj-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── Layout ───────────────────────────────────────────────── */
.lj-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.lj-section {
  padding: 3rem 0;
}
.lj-section-alt {
  background: var(--lj-bg-alt);
}

/* ============================================================
   HEADER
   ============================================================ */
.lj-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--lj-navy);
  height: var(--lj-header-h);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.lj-header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

/* Logo */
.lj-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -.01em;
}
.lj-logo i {
  font-size: 1.4rem;
  color: var(--lj-accent);
  filter: drop-shadow(0 0 8px rgba(32,201,151,.5));
}
.lj-logo span {
  background: linear-gradient(90deg, #fff 0%, var(--lj-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lj-logo-img {
  height: 44px;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* Nav */
.lj-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  white-space: nowrap;
}
.lj-nav a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  padding: .4rem .75rem;
  border-radius: var(--lj-radius-sm);
  transition: background var(--lj-transition), color var(--lj-transition);
  position: relative;
}
.lj-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.lj-nav a.active {
  color: var(--lj-accent);
  background: rgba(32,201,151,.12);
}
.lj-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--lj-accent);
  border-radius: 2px;
}

/* Search */
.lj-search-form {
  display: flex;
  flex: 1;
  max-width: 380px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  transition: background var(--lj-transition), border-color var(--lj-transition);
}
.lj-search-form:focus-within {
  background: rgba(255,255,255,.18);
  border-color: var(--lj-accent);
  box-shadow: 0 0 0 3px rgba(32,201,151,.2);
}
.lj-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: .5rem 1rem;
  font-size: .875rem;
  background: transparent;
  color: #fff;
}
.lj-search-input::placeholder {
  color: rgba(255,255,255,.5);
}
.lj-search-btn {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: none;
  padding: .5rem 1rem;
  cursor: pointer;
  transition: color var(--lj-transition);
  display: flex;
  align-items: center;
}
.lj-search-btn:hover { color: var(--lj-accent); }

/* Header actions */
.lj-header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* Cart icon */
.lj-cart-icon {
  position: relative;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background var(--lj-transition), color var(--lj-transition);
}
.lj-cart-icon:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.lj-cart-icon i { font-size: 1.15rem; }
.lj-cart-wrap {
  flex-direction: column;
  width: auto;
  height: auto;
  padding: .3rem .55rem;
  border-radius: 8px;
  gap: 2px;
}
.lj-cart-icon-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 22px;
}
.lj-cart-icon-area .cart-badge {
  top: -7px;
  right: -9px;
}
@keyframes cartBounce {
  0%   { transform: scale(1) rotate(0deg); }
  15%  { transform: scale(1.4) rotate(-12deg); }
  30%  { transform: scale(1.3) rotate(10deg); }
  45%  { transform: scale(1.35) rotate(-8deg); }
  60%  { transform: scale(1.2) rotate(5deg); }
  75%  { transform: scale(1.1) rotate(-3deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.lj-cart-pulse .lj-cart-icon-area i {
  animation: cartBounce .75s cubic-bezier(.36,.07,.19,.97);
  display: inline-block;
  transform-origin: center bottom;
}
.lj-cart-total {
  font-size: .58rem;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--lj-danger);
  color: #fff;
  font-size: .6rem;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  padding: 0 4px;
  border: 2px solid var(--lj-navy);
  line-height: 1;
}

/* Account btn */
.lj-account-btn {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  transition: background var(--lj-transition), color var(--lj-transition), border-color var(--lj-transition);
}
.lj-account-btn:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.lj-account-name {
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Hamburger */
.lj-hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  padding: .4rem .6rem;
  border-radius: var(--lj-radius-sm);
  transition: background var(--lj-transition);
}
.lj-hamburger:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* Mobile Drawer */
.lj-mobile-drawer {
  position: fixed;
  top: var(--lj-header-h);
  left: 0;
  right: 0;
  background: var(--lj-navy-mid);
  border-bottom: 1px solid rgba(255,255,255,.1);
  z-index: 199;
  transform: translateY(-105%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.lj-mobile-drawer.open {
  transform: translateY(0);
}
.lj-mobile-drawer a,
.lj-mobile-drawer button {
  display: block;
  padding: .7rem 1.25rem;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--lj-transition), color var(--lj-transition);
}
.lj-mobile-drawer a:hover,
.lj-mobile-drawer button:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.lj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: var(--lj-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .6rem 1.4rem;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--lj-transition), transform var(--lj-transition), box-shadow var(--lj-transition);
  letter-spacing: .01em;
  white-space: nowrap;
}
.lj-btn:hover {
  background: var(--lj-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,79,117,.35);
}
.lj-btn:active { transform: translateY(0); }

.lj-btn-accent {
  background: var(--lj-accent);
  color: var(--lj-navy);
}
.lj-btn-accent:hover {
  background: var(--lj-accent-dark);
  box-shadow: 0 6px 20px rgba(32,201,151,.4);
}

.lj-btn-outline {
  background: transparent;
  color: var(--lj-primary);
  border: 2px solid var(--lj-primary);
}
.lj-btn-outline:hover {
  background: var(--lj-bg-alt);
  box-shadow: none;
}

.lj-btn-white {
  background: #fff;
  color: var(--lj-navy);
  box-shadow: var(--lj-shadow);
}
.lj-btn-white:hover {
  background: #f0f7ff;
  box-shadow: var(--lj-shadow-lg);
}

.lj-btn-sm {
  padding: .4rem 1rem;
  font-size: .82rem;
}

.lj-btn-lg {
  padding: .8rem 2rem;
  font-size: 1.05rem;
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.lj-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--lj-navy);
}
.lj-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .6s ease;
}
.lj-hero-slide.active { opacity: 1; }

.lj-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,33,55,.85) 0%,
    rgba(13,33,55,.55) 50%,
    rgba(13,33,55,.25) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 2rem 4rem;
}

.lj-hero-overlay.lj-hero-left {
  align-items: flex-start;
  text-align: left;
  padding: 3rem 4rem;
}

.lj-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(32,201,151,.2);
  color: var(--lj-accent);
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(32,201,151,.35);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.lj-hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 .75rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  max-width: 680px;
}

.lj-hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.15rem;
  margin: 0 0 1.75rem;
  max-width: 520px;
  line-height: 1.6;
}

.lj-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Hero nav arrows */
.lj-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background var(--lj-transition), transform var(--lj-transition);
  z-index: 10;
}
.lj-hero-nav:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-50%) scale(1.08);
}
.lj-hero-prev { left: 1.25rem; }
.lj-hero-next { right: 1.25rem; }

/* Hero dots */
.lj-hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}
.lj-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  padding: 0;
  transition: all var(--lj-transition);
}
.lj-hero-dot.active {
  background: var(--lj-accent);
  width: 24px;
}

/* Hero no-banner fallback */
.lj-hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lj-navy) 0%, var(--lj-primary) 55%, var(--lj-accent) 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
/* Overlay extra quando há imagem de fundo — garante legibilidade do texto */
.lj-hero-fallback[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 1;
}
.lj-hero-fallback[style*="background-image"] .lj-hero-overlay {
  z-index: 2;
}
.lj-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.lj-hero-fish-bg {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14rem;
  color: rgba(255,255,255,.04);
  pointer-events: none;
}

/* ============================================================
   CATEGORY BAR
   ============================================================ */
.lj-cats-bar {
  background: var(--lj-white);
  border-bottom: 2px solid var(--lj-border);
  padding: .75rem 0;
  position: relative;
}
.lj-cats-bar::before,
.lj-cats-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}
.lj-cats-bar::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.lj-cats-bar::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.lj-cats-scroll {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .25rem .5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.lj-cats-scroll::-webkit-scrollbar { display: none; }

.lj-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: .6rem 1.1rem;
  border-radius: var(--lj-radius);
  text-decoration: none;
  color: var(--lj-text-soft);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--lj-transition), color var(--lj-transition), transform var(--lj-transition);
  border: 1.5px solid transparent;
  min-width: 70px;
}
.lj-cat-item:hover {
  background: var(--lj-bg-alt);
  color: var(--lj-primary);
  border-color: var(--lj-primary);
  transform: translateY(-2px);
}
.lj-cat-item.active {
  background: var(--lj-bg-alt);
  color: var(--lj-primary);
  border-color: var(--lj-primary);
}
.lj-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lj-bg-alt), #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--lj-primary);
  transition: background var(--lj-transition), transform var(--lj-transition);
  box-shadow: var(--lj-shadow-sm);
}
.lj-cat-item:hover .lj-cat-icon {
  background: linear-gradient(135deg, var(--lj-primary), var(--lj-primary-light));
  color: #fff;
  transform: scale(1.1);
}
.lj-cat-label {
  font-size: .75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.lj-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}
.lj-section-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0;
  color: var(--lj-text);
  display: flex;
  align-items: center;
  gap: .65rem;
  position: relative;
  padding-left: 1rem;
  letter-spacing: -.02em;
}
.lj-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--lj-accent), var(--lj-primary));
  border-radius: 4px;
}
.lj-section-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--lj-primary);
  text-decoration: none;
  white-space: nowrap;
  padding: .35rem .75rem;
  border-radius: 999px;
  border: 1.5px solid var(--lj-primary);
  transition: background var(--lj-transition), color var(--lj-transition);
}
.lj-section-link:hover {
  background: var(--lj-primary);
  color: #fff;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.prod-card {
  background: var(--lj-white);
  border: 1px solid var(--lj-border);
  border-radius: var(--lj-radius);
  overflow: hidden;
  transition: transform var(--lj-transition), box-shadow var(--lj-transition), border-color var(--lj-transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,107,154,.18), 0 4px 12px rgba(0,0,0,.08);
  border-color: rgba(26,107,154,.25);
}

/* Card image area */
.prod-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f5fa;
  flex-shrink: 0;
}
.prod-img-wrap img.prod-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.prod-card:hover .prod-img-wrap img.prod-thumb {
  transform: scale(1.06);
}
.prod-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4cdd8;
  font-size: 3.5rem;
}

/* Hover overlay */
.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,33,55,.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--lj-transition);
  backdrop-filter: blur(2px);
}
.prod-card:hover .prod-img-overlay {
  opacity: 1;
}
.prod-overlay-btn {
  background: #fff;
  color: var(--lj-navy);
  border: none;
  border-radius: 999px;
  padding: .65rem 1.35rem;
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .45rem;
  transform: translateY(12px);
  transition: transform var(--lj-transition), background var(--lj-transition), box-shadow var(--lj-transition);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  white-space: nowrap;
}
.prod-card:hover .prod-overlay-btn {
  transform: translateY(0);
}
.prod-overlay-btn:hover {
  background: var(--lj-accent);
  color: var(--lj-navy);
  box-shadow: 0 6px 20px rgba(32,201,151,.4);
}

/* Card badges */
.prod-badges {
  position: absolute;
  top: .6rem;
  left: .6rem;
  right: .6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
  z-index: 5;
}
.prod-badge-left {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  align-items: flex-start;
}
.prod-badge-right {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  align-items: flex-end;
}

.prod-badge {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .68rem;
  font-weight: 800;
  padding: .2rem .55rem;
  border-radius: 999px;
  letter-spacing: .02em;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.prod-badge-desconto {
  background: var(--lj-danger);
  color: #fff;
}
.prod-badge-destaque {
  background: linear-gradient(135deg, #f6ad55, #ed8936);
  color: #fff;
}
.prod-badge-novo {
  background: linear-gradient(135deg, var(--lj-accent), var(--lj-primary-light));
  color: #fff;
}

/* Card info */
.prod-info {
  padding: .9rem .9rem .5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.prod-nome {
  font-size: .875rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
  color: var(--lj-text);
}
.prod-preco-riscado {
  font-size: .78rem;
  color: #a0aec0;
  text-decoration: line-through;
  line-height: 1;
}
.prod-preco {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--lj-primary);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.prod-preco-promo {
  color: var(--lj-danger);
}

/* Card footer */
.prod-card-footer {
  padding: 0 .9rem .9rem;
  display: flex;
  gap: .4rem;
  margin-top: auto;
}
.prod-btn-ver {
  flex: 1;
  background: var(--lj-primary);
  color: #fff;
  border: none;
  border-radius: var(--lj-radius-sm);
  padding: .5rem;
  font-size: .8rem;
  cursor: pointer;
  font-weight: 700;
  transition: background var(--lj-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
}
.prod-btn-ver:hover { background: var(--lj-primary-dark); }

.prod-btn-wpp {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: var(--lj-radius-sm);
  padding: .5rem .65rem;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--lj-transition);
  flex-shrink: 0;
}
.prod-btn-wpp:hover { background: #20bd5a; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.lj-cta-strip {
  background: linear-gradient(135deg, var(--lj-navy) 0%, var(--lj-primary) 50%, var(--lj-accent-dark) 100%);
  padding: 2.25rem 0;
  position: relative;
  overflow: hidden;
}
.lj-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lj-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.lj-cta-text {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.lj-cta-icon {
  font-size: 2.5rem;
  color: var(--lj-accent);
  filter: drop-shadow(0 0 12px rgba(32,201,151,.6));
  flex-shrink: 0;
}
.lj-cta-headline {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 .2rem;
  letter-spacing: -.01em;
}
.lj-cta-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin: 0;
}
.lj-cta-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   FORMS
   ============================================================ */
.lj-form-label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .3rem;
  color: var(--lj-text);
}
.lj-form-control {
  width: 100%;
  border: 1.5px solid var(--lj-border);
  border-radius: var(--lj-radius-sm);
  padding: .55rem .85rem;
  font-size: .9rem;
  color: var(--lj-text);
  background: var(--lj-white);
  transition: border-color var(--lj-transition), box-shadow var(--lj-transition);
  outline: none;
}
.lj-form-control:focus {
  border-color: var(--lj-primary);
  box-shadow: 0 0 0 3px rgba(26,107,154,.12);
}
.lj-form-select {
  width: 100%;
  border: 1.5px solid var(--lj-border);
  border-radius: var(--lj-radius-sm);
  padding: .55rem .85rem;
  font-size: .9rem;
  background: var(--lj-white);
  outline: none;
  cursor: pointer;
  transition: border-color var(--lj-transition);
}
.lj-form-select:focus { border-color: var(--lj-primary); }

/* ============================================================
   ALERTS
   ============================================================ */
.lj-alert {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1.25rem;
  border-radius: var(--lj-radius-sm);
  font-size: .88rem;
  font-weight: 500;
}
.lj-alert-success { background: #e6f7ee; color: #276749; border: 1px solid #9ae6b4; }
.lj-alert-error   { background: #fff5f5; color: #9b2c2c; border: 1px solid #feb2b2; }
.lj-alert-info    { background: #ebf8ff; color: #2b6cb0; border: 1px solid #90cdf4; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.lj-breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--lj-muted);
}
.lj-breadcrumb a { color: var(--lj-primary); }
.lj-breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.lj-produto-detail {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.lj-produto-img-wrap {
  background: var(--lj-white);
  border: 1px solid var(--lj-border);
  border-radius: var(--lj-radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--lj-shadow);
}
.lj-produto-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}
.lj-produto-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  font-size: 5rem;
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.lj-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.75rem;
  align-items: start;
}

/* ============================================================
   CART TABLE
   ============================================================ */
.lj-cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.lj-cart-table th {
  text-align: left;
  padding: .65rem .85rem;
  border-bottom: 2px solid var(--lj-border);
  font-size: .78rem;
  color: var(--lj-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.lj-cart-table td {
  padding: .85rem;
  border-bottom: 1px solid var(--lj-border);
  vertical-align: middle;
}

/* ============================================================
   BADGES (utility)
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
}
.badge-success   { background: #c6f6d5; color: #22543d; }
.badge-danger    { background: #fed7d7; color: #742a2a; }
.badge-warning   { background: #fefcbf; color: #744210; }
.badge-info      { background: #bee3f8; color: #2a4365; }
.badge-purple    { background: #e9d8fd; color: #553c9a; }
.badge-secondary { background: #edf2f7; color: #4a5568; }
.badge-esgotado  { background: #edf2f7; color: #718096; }
.badge-promo     { background: #fed7d7; color: #742a2a; }

/* Stars */
.lj-stars {
  color: #f6ad55;
  letter-spacing: .05em;
  font-size: .9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lj-footer {
  background: var(--lj-navy);
  padding: 3.5rem 0 0;
  margin-top: 4rem;
  border-top: 3px solid rgba(32,201,151,.3);
}
.lj-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.lj-footer-brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .85rem;
}
.lj-footer-brand i {
  color: var(--lj-accent);
  filter: drop-shadow(0 0 6px rgba(32,201,151,.5));
}

.lj-footer-slogan {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.lj-footer-social {
  display: flex;
  gap: .6rem;
}
.lj-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  text-decoration: none;
  transition: background var(--lj-transition), color var(--lj-transition), border-color var(--lj-transition);
}
.lj-footer-social a:hover {
  background: var(--lj-accent);
  color: var(--lj-navy);
  border-color: var(--lj-accent);
}

.lj-footer-heading {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.lj-footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.lj-footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  text-decoration: none;
  transition: color var(--lj-transition), padding-left var(--lj-transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.lj-footer-links a:hover {
  color: var(--lj-accent);
  padding-left: .25rem;
}
.lj-footer-links a i { font-size: .7rem; color: var(--lj-accent); }

.lj-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.lj-footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.lj-footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.lj-footer-bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color var(--lj-transition);
}
.lj-footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ============================================================
   EMPTY STATES
   ============================================================ */
.lj-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--lj-muted);
}
.lj-empty i {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  opacity: .35;
}
.lj-empty h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lj-text-soft);
  margin: 0 0 .5rem;
}
.lj-empty p {
  font-size: .9rem;
  margin: 0 0 1.5rem;
}

/* ============================================================
   CARD HIGHLIGHT (feature card)
   ============================================================ */
.lj-feature-card {
  background: var(--lj-white);
  border: 1px solid var(--lj-border);
  border-radius: var(--lj-radius);
  padding: 1.5rem;
  box-shadow: var(--lj-shadow-sm);
  transition: box-shadow var(--lj-transition), transform var(--lj-transition);
}
.lj-feature-card:hover {
  box-shadow: var(--lj-shadow);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  :root { --lj-header-h: 60px; }

  .lj-nav { display: none; }
  .lj-hamburger { display: flex; align-items: center; }
  .lj-search-form { display: none; }

  .lj-hero { height: 320px; }
  .lj-hero-title { font-size: 2rem; }
  .lj-hero-sub { font-size: 1rem; }
  .lj-hero-overlay { padding: 2rem 1.75rem; }
  .lj-hero-fish-bg { font-size: 8rem; }

  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .lj-produto-detail { grid-template-columns: 1fr; }
  .lj-checkout-grid { grid-template-columns: 1fr; }
  .lj-footer-grid { grid-template-columns: 1fr 1fr; }
  .lj-footer-categorias { display: none; }

  .lj-cta-inner { flex-direction: column; text-align: center; }
  .lj-cta-text { flex-direction: column; text-align: center; }
  .lj-cta-actions { justify-content: center; }
}

@media (max-width: 600px) {
  .lj-hero { height: 260px; }
  .lj-hero-title { font-size: 1.6rem; }
  .lj-hero-sub { display: none; }
  .lj-hero-ctas .lj-btn { width: 100%; }

  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }

  .lj-footer-grid { grid-template-columns: 1fr 1fr; }
  .lj-footer-bottom { flex-direction: column; text-align: center; }

  .lj-section { padding: 2rem 0; }

  .lj-cat-icon { width: 38px; height: 38px; font-size: 1rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .lj-header, .lj-footer, .lj-mobile-drawer { display: none !important; }
}
