:root {
  --black: #050505;
  --dark: #101010;
  --gray: #f3f3f3;
  --text: #151515;
  --muted: #666;
  --white: #fff;
  --gold: #c9a45c;
  --gold-light: rgba(201,164,92,.18);
  --border: rgba(255,255,255,.14);
  --shadow: 0 20px 60px rgba(0,0,0,.22);
  --radius: 22px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Inter, Arial, sans-serif; color: var(--text); background: #fff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease, box-shadow .3s ease;
}

.navbar {
  width: min(1180px, 94%);
  height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  border: 2px solid rgba(201,164,92,.50);
  padding: 3px;
  box-shadow: 0 0 0 4px rgba(201,164,92,.08);
  transition: box-shadow .3s ease, border-color .3s ease;
}

.brand:hover img {
  border-color: rgba(201,164,92,.90);
  box-shadow: 0 0 0 6px rgba(201,164,92,.14);
}

.brand-divider {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, transparent, rgba(201,164,92,.55), transparent);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: Cinzel, serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: white;
  line-height: 1;
}

.brand-sub {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}



.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  color: white;
}

.nav-menu a {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: .93rem;
  color: #ccc;
  font-weight: 500;
  transition: color .25s ease, background .25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  background: rgba(201,164,92,.10);
}

/* ===== BOTÕES ===== */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #080808;
  font-weight: 800;
  font-family: inherit;
  font-size: .95rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
  box-shadow: 0 12px 30px rgba(201,164,92,.22);
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transition: transform .5s ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 18px 44px rgba(201,164,92,.32);
}

.btn:hover::after {
  transform: translateX(110%);
}

/* Shimmer contínuo no botão principal do hero */
.btn-shimmer::after {
  animation: shimmer 2.8s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { transform: translateX(-110%); }
  40%  { transform: translateX(110%); }
  100% { transform: translateX(110%); }
}

.btn-small { padding: 10px 18px; font-size: .88rem; }

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.45);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255,255,255,.08);
  filter: none;
}

.btn-outline.dark {
  color: #111;
  border-color: #bbb;
  box-shadow: none;
}

.btn-outline.dark:hover {
  background: rgba(0,0,0,.06);
  filter: none;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background: url('../assets/imagens/ambiente-cadeira.png') center / cover no-repeat;
  padding: 120px 18px 80px;
}

/* parallax desativado em mobile via media query */
@media (min-width: 901px) {
  .hero { background-attachment: fixed; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.90), rgba(0,0,0,.55) 50%, rgba(0,0,0,.84));
}

.hero-content {
  position: relative;
  max-width: 860px;
}

.hero-logo-wrap {
  width: clamp(170px, 46vw, 220px);
  height: clamp(170px, 46vw, 220px);
  border-radius: 50%;
  border: 3px solid rgba(201,164,92,.55);
  box-shadow: 0 0 0 8px rgba(201,164,92,.10), 0 24px 56px rgba(0,0,0,.55);
  background: #000;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow .4s ease;
}

.hero-logo-wrap:hover {
  box-shadow: 0 0 0 14px rgba(201,164,92,.14), 0 28px 64px rgba(0,0,0,.55);
}

.hero-logo {
  width: 92%;
  height: 92%;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.eyebrow,
.section-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
}

.hero h1 {
  font-family: Cinzel, serif;
  font-size: clamp(2.2rem, 5.8vw, 4.8rem);
  line-height: 1.06;
  margin: 14px 0 18px;
}

.hero-text {
  max-width: 680px;
  margin: 0 auto 28px;
  color: #ddd;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  padding: 34px 20px;
  border-right: 1px solid var(--border);
  transition: background .28s ease;
}

.stat:last-child { border-right: 0; }

.stat:hover { background: rgba(201,164,92,.06); }

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat span { color: #ccc; font-size: .95rem; }

/* ===== CONTAINER & LAYOUT ===== */
.container { width: min(1120px, 92%); margin: auto; }

.section { padding: 90px 0; }
.section-gray { background: var(--gray); }
.section-dark { background: var(--black); color: var(--white); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

/* ===== SOBRE ===== */
h2 {
  font-family: Cinzel, serif;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  margin: 10px 0 18px;
}

.about-text p { color: #555; line-height: 1.7; }

.about-card {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: #f7f7f7;
  border-radius: 0 12px 12px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-image img,
.map-card img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  height: 500px;
  width: 100%;
  object-fit: cover;
  transition: transform .5s ease, box-shadow .5s ease;
}

.about-image img:hover,
.map-card img:hover {
  transform: scale(1.02);
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
}

/* ===== SERVIÇOS ===== */
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-heading p { color: #666; margin-top: 10px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 28px rgba(0,0,0,.05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  border-color: var(--gold);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.service-card span {
  color: var(--gold);
  font-weight: 700;
  font-size: .85rem;
}

.service-card p {
  color: #666;
  font-size: .92rem;
  margin: 10px 0 16px;
  flex: 1;
}

.service-card strong {
  font-size: 1.5rem;
  color: #111;
  display: block;
  margin-top: auto;
}

/* ===== PROMOÇÃO ===== */
.promo { background: linear-gradient(135deg, #0b0b0b, #1c1c1c); color: white; }

.promo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px 48px;
  background: rgba(255,255,255,.035);
  position: relative;
  overflow: hidden;
}

.promo-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -100px;
  right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,92,.18), transparent 70%);
  pointer-events: none;
}

.promo-box > * { position: relative; }

.promo p { color: #ddd; margin-top: 10px; }
.promo strong { color: var(--gold); font-size: 1.5rem; }

/* ===== GALERIA ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  height: 340px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(.12);
  transition: transform .38s ease, filter .38s ease, box-shadow .38s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  filter: grayscale(0);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
  z-index: 1;
  position: relative;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lb-img-wrap {
  max-width: min(88vw, 1000px);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 32px 100px rgba(0,0,0,.7);
  opacity: 1;
  transition: opacity .18s ease;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .22s ease, transform .22s ease;
}

.lb-close:hover { background: rgba(255,255,255,.22); transform: scale(1.08); }

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .22s ease, transform .22s ease;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-prev:hover { background: rgba(255,255,255,.20); transform: translateY(-50%) scale(1.08); }
.lb-next:hover { background: rgba(255,255,255,.20); transform: translateY(-50%) scale(1.08); }

.lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  letter-spacing: .05em;
  white-space: nowrap;
}

/* ===== LOCALIZAÇÃO ===== */
.hours {
  margin: 24px 0 28px;
}

.hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 13px 0;
  transition: background .2s ease;
}

.hours li span { color: #555; }
.hours li strong { color: #111; font-weight: 700; }

/* Destaque do dia atual */
.hours li.today {
  background: rgba(201,164,92,.10);
  border-radius: 8px;
  padding-left: 12px;
  padding-right: 12px;
  border-bottom-color: transparent;
  margin-bottom: 1px;
}

.hours li.today span {
  color: var(--gold);
  font-weight: 700;
}

.hours li.today strong {
  color: #111;
}

.hours li.today::after {
  content: "Hoje";
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  background: rgba(201,164,92,.15);
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 10px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: white;
  text-align: center;
  padding: 48px 20px;
}

.footer img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 2px solid rgba(201,164,92,.40);
}

.footer p { color: #bbb; font-size: .92rem; line-height: 1.8; }

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 12px 35px rgba(37,211,102,.35);
  transition: transform .28s ease, box-shadow .28s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 18px 48px rgba(37,211,102,.45);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger nos cards de serviço */
.cards-grid .reveal:nth-child(2)  { transition-delay: .06s; }
.cards-grid .reveal:nth-child(3)  { transition-delay: .12s; }
.cards-grid .reveal:nth-child(4)  { transition-delay: .06s; }
.cards-grid .reveal:nth-child(5)  { transition-delay: .12s; }
.cards-grid .reveal:nth-child(6)  { transition-delay: .18s; }
.cards-grid .reveal:nth-child(7)  { transition-delay: .06s; }
.cards-grid .reveal:nth-child(8)  { transition-delay: .12s; }
.cards-grid .reveal:nth-child(9)  { transition-delay: .18s; }
.cards-grid .reveal:nth-child(10) { transition-delay: .24s; }

.gallery-grid .reveal:nth-child(2) { transition-delay: .08s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: .16s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: .24s; }

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    background: rgba(5,5,5,.97);
    backdrop-filter: blur(16px);
    display: none;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.active { display: flex; }
  .nav-menu a { padding: 12px 16px; justify-content: center; }
  .menu-toggle { display: flex; }
  .navbar > .btn-small { display: none; }

  .grid-2,
  .cards-grid { grid-template-columns: 1fr; }

  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .about-image img,
  .map-card img { height: 360px; }

  .promo-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
  }

  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }

  .hero-logo-wrap { width: clamp(150px, 42vw, 200px); height: clamp(150px, 42vw, 200px); }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 300px; }

  .brand span { display: none; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .promo-box { padding: 26px 22px; }

  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }

  .lb-caption { display: none; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ===== SPRINT 1-6: REDESIGN + LOJA + CARRINHO + ADMIN ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 8%, rgba(201,164,92,.12), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(201,164,92,.09), transparent 30%);
}

.header.scrolled { background: rgba(5,5,5,.96); box-shadow: 0 4px 32px rgba(0,0,0,.45); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.cart-button {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); color: white; padding: 10px 14px; border-radius: 999px;
  font: inherit; font-weight: 800; cursor: pointer; transition: .25s ease;
}
.cart-button:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.cart-button span { min-width: 22px; height: 22px; display: grid; place-items: center; background: var(--gold); color:#050505; border-radius: 50%; font-size: .75rem; }

.hero::before {
  content:""; position:absolute; inset:0; z-index:0;
  background: linear-gradient(90deg, rgba(201,164,92,.10) 1px, transparent 1px), linear-gradient(rgba(201,164,92,.08) 1px, transparent 1px);
  background-size: 70px 70px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 70%); opacity:.35;
}
.hero-content { z-index: 1; }
.hero-badges { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin: 0 auto 24px; }
.hero-badges span { border:1px solid rgba(201,164,92,.35); color:#f4e4bf; background: rgba(0,0,0,.28); border-radius:999px; padding:7px 12px; font-weight:700; font-size:.82rem; }

.shop-toolbar {
  display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 14px; margin-bottom: 24px;
  background: white; border: 1px solid #e6e2d7; padding: 16px; border-radius: 24px; box-shadow: 0 12px 34px rgba(0,0,0,.06);
}
.shop-toolbar label, .admin-login label, .product-form label { display:flex; flex-direction:column; gap:7px; font-weight:800; color:#222; font-size:.86rem; }
.shop-toolbar input, .shop-toolbar select, .admin-login input, .product-form input, .product-form textarea, .product-form select {
  width:100%; border:1px solid #ddd; border-radius:14px; padding:13px 14px; font:inherit; background:#fff; outline:none; transition:.2s ease;
}
.shop-toolbar input:focus, .shop-toolbar select:focus, .admin-login input:focus, .product-form input:focus, .product-form textarea:focus { border-color:var(--gold); box-shadow: 0 0 0 4px rgba(201,164,92,.14); }
.featured-strip { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin: 18px 0 28px; }
.featured-card { min-height: 180px; border-radius: 26px; overflow:hidden; position:relative; color:white; padding:22px; display:flex; flex-direction:column; justify-content:flex-end; background:#111; box-shadow:var(--shadow); }
.featured-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.38; transition: transform .5s ease; }
.featured-card:hover img { transform: scale(1.08); }
.featured-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.84)); }
.featured-card > * { position:relative; z-index:1; }
.featured-card span { color: var(--gold); font-weight: 900; }

.products-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.product-card { background:white; border:1px solid #e6e2d7; border-radius: 26px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,.06); transition:.28s ease; display:flex; flex-direction:column; }
.product-card:hover { transform: translateY(-7px); border-color: var(--gold); box-shadow: 0 28px 70px rgba(0,0,0,.13); }
.product-media { height:230px; background:#111; position:relative; overflow:hidden; }
.product-media img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-badges { position:absolute; left:12px; top:12px; display:flex; gap:7px; flex-wrap:wrap; }
.product-badges span { background:rgba(5,5,5,.78); color:#fff; border:1px solid rgba(255,255,255,.16); border-radius:999px; padding:5px 9px; font-weight:900; font-size:.72rem; }
.product-badges .promo-badge { background:var(--gold); color:#050505; }
.product-info { padding:20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-info h3 { font-size:1.08rem; line-height:1.25; }
.product-info p { color:#666; font-size:.92rem; flex:1; }
.product-meta { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.price { font-size:1.35rem; font-weight:900; color:#111; }
.price del { color:#999; font-size:.85rem; display:block; font-weight:700; }
.stock { font-size:.78rem; font-weight:900; color:#777; }
.stock.low { color:#b36b00; }
.stock.empty { color:#b00020; }
.product-actions { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:8px; }
.product-actions .btn { padding:11px 12px; font-size:.83rem; }
.product-actions .btn-outline { color:#111; border-color:#ddd; }

.cart-backdrop { position:fixed; inset:0; background:rgba(0,0,0,.55); opacity:0; visibility:hidden; transition:.25s ease; z-index:1500; }
.cart-backdrop.open { opacity:1; visibility:visible; }
.cart-drawer { position:fixed; top:0; right:0; width:min(430px, 94vw); height:100vh; background:#fff; z-index:1600; transform:translateX(105%); transition:.32s ease; box-shadow:-20px 0 80px rgba(0,0,0,.35); display:flex; flex-direction:column; }
.cart-drawer.open { transform:translateX(0); }
.cart-header { padding:22px; border-bottom:1px solid #eee; display:flex; align-items:center; justify-content:space-between; }
.cart-header h2 { font-size:1.6rem; margin:0; }
.cart-header button, .modal-close, #closeCart { border:0; background:#111; color:#fff; width:42px; height:42px; border-radius:50%; font-size:1.5rem; cursor:pointer; }
.cart-items { padding:18px; flex:1; overflow:auto; display:flex; flex-direction:column; gap:14px; }
.cart-item { display:grid; grid-template-columns:70px 1fr; gap:12px; border:1px solid #eee; border-radius:18px; padding:10px; }
.cart-item img { width:70px; height:70px; border-radius:14px; object-fit:cover; }
.cart-item h4 { font-size:.95rem; margin-bottom:4px; }
.qty-row { display:flex; align-items:center; gap:8px; margin-top:8px; }
.qty-row button { width:28px; height:28px; border-radius:50%; border:1px solid #ddd; background:#fafafa; cursor:pointer; font-weight:900; }
.cart-summary { border-top:1px solid #eee; padding:20px; display:flex; flex-direction:column; gap:14px; }
.cart-summary div { display:flex; align-items:center; justify-content:space-between; font-size:1.1rem; }
.cart-summary small { color:#666; }

.product-modal { position:fixed; inset:0; background:rgba(0,0,0,.78); z-index:1700; display:grid; place-items:center; padding:20px; opacity:0; visibility:hidden; transition:.25s ease; }
.product-modal.open { opacity:1; visibility:visible; }
.product-modal-card { width:min(980px, 96vw); max-height:90vh; overflow:auto; background:#fff; border-radius:28px; padding:24px; position:relative; }
.modal-close { position:absolute; right:18px; top:18px; z-index:2; }
.product-detail { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.detail-main-img { height:430px; border-radius:22px; object-fit:cover; width:100%; background:#111; }
.detail-thumbs { display:flex; gap:10px; margin-top:10px; overflow:auto; }
.detail-thumbs img { width:76px; height:76px; border-radius:12px; object-fit:cover; cursor:pointer; border:2px solid transparent; }
.detail-thumbs img.active { border-color:var(--gold); }
.related-products { margin-top:20px; display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.related-mini { border:1px solid #eee; border-radius:16px; padding:10px; cursor:pointer; }
.related-mini img { height:90px; width:100%; object-fit:cover; border-radius:12px; margin-bottom:8px; }

.admin-section { background:linear-gradient(135deg, #070707, #1c1c1c); color:#fff; }
.admin-shell { border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.04); border-radius:32px; padding:32px; }
.admin-copy p { color:#ddd; }
.admin-login { margin-top:22px; display:grid; grid-template-columns:1fr 1fr auto; gap:14px; align-items:end; }
.admin-login label, .product-form label { color:#eee; }
.admin-panel { margin-top:28px; }
.dashboard-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:20px; }
.dash-card { background:#fff; color:#111; border-radius:20px; padding:18px; }
.dash-card strong { display:block; font-size:1.7rem; color:var(--gold); }
.product-form { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:24px; padding:20px; display:flex; flex-direction:column; gap:14px; }
.form-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.check-row, .form-actions { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.upload-box { border:1px dashed rgba(201,164,92,.6); border-radius:16px; padding:14px; }
.form-feedback { color:#ffd98a; font-weight:800; }
.admin-table-wrap { overflow:auto; margin-top:18px; border-radius:20px; border:1px solid rgba(255,255,255,.14); }
.admin-table { width:100%; border-collapse:collapse; background:#fff; color:#111; min-width:760px; }
.admin-table th, .admin-table td { padding:12px; border-bottom:1px solid #eee; text-align:left; }
.admin-table th { background:#f5f1e8; }
.admin-table button { border:0; border-radius:999px; padding:8px 10px; cursor:pointer; font-weight:800; margin-right:6px; }
.admin-table .danger { background:#fee; color:#b00020; }
.low-stock-row { background:#fff8e7; }

@media (max-width: 900px) {
  .nav-actions { margin-left:auto; }
  .navbar > .nav-actions .btn-small { display:none; }
  .shop-toolbar, .featured-strip, .products-grid, .product-detail, .admin-login, .dashboard-cards, .form-grid { grid-template-columns:1fr; }
  .featured-card { min-height:150px; }
  .product-actions { grid-template-columns:1fr; }
  .detail-main-img { height:320px; }
  .related-products { grid-template-columns:1fr; }
}

@media (max-width: 560px) {
  .cart-button { padding:8px 10px; font-size:.8rem; }
  .product-media { height:210px; }
  .admin-shell { padding:22px; }
}

/* ===== PÁGINAS SEPARADAS: PRODUTOS E ADMIN ===== */
.page-hero{padding:150px 0 70px;background:radial-gradient(circle at 20% 0%,rgba(201,164,92,.22),transparent 34%),linear-gradient(135deg,#060606,#17120a 58%,#050505);color:#fff;position:relative;overflow:hidden}.page-hero:after{content:"";position:absolute;inset:auto -10% -40% -10%;height:220px;background:linear-gradient(90deg,transparent,rgba(201,164,92,.18),transparent);filter:blur(28px)}.page-hero h1{font-family:var(--title-font);font-size:clamp(2.3rem,6vw,5rem);line-height:.98;max-width:860px;margin:12px 0}.page-hero p{max-width:680px;color:#ddd;font-size:1.08rem}.shop-preview .featured-strip{margin-top:0}.isolated-admin{background:#060606;color:#f7f2e8}.admin-login-page{min-height:100vh;display:grid;grid-template-columns:minmax(340px,520px) 1fr}.admin-login-card{padding:clamp(28px,5vw,70px);display:flex;flex-direction:column;justify-content:center;background:linear-gradient(180deg,#111,#080808);border-right:1px solid rgba(201,164,92,.18)}.admin-login-brand{display:flex;align-items:center;gap:18px;margin-bottom:28px}.admin-login-brand img,.admin-logo img{width:72px;height:72px;object-fit:cover;border-radius:18px;border:1px solid rgba(201,164,92,.5)}.admin-login-form{display:grid;gap:16px}.admin-login-form label,.product-form label{display:grid;gap:7px;font-weight:700;color:#f6eddc}.input,.admin-login-form input,.product-form input,.product-form textarea,.product-form select{width:100%;border:1px solid rgba(201,164,92,.22);background:#0d0d0d;color:#fff;border-radius:14px;padding:13px 14px;outline:none}.input:focus,.product-form input:focus,.product-form textarea:focus{border-color:var(--gold);box-shadow:0 0 0 4px rgba(201,164,92,.12)}.admin-login-side{display:flex;flex-direction:column;justify-content:center;padding:clamp(30px,7vw,90px);background:radial-gradient(circle at 70% 20%,rgba(201,164,92,.22),transparent 35%),linear-gradient(135deg,#17110a,#060606)}.admin-login-side h2{font-family:var(--title-font);font-size:clamp(2rem,5vw,4.6rem);line-height:1}.orb{width:160px;height:160px;border-radius:999px;background:linear-gradient(135deg,rgba(201,164,92,.8),rgba(255,255,255,.08));filter:blur(.3px);box-shadow:0 0 70px rgba(201,164,92,.28);margin-bottom:28px}.admin-shell-page{min-height:100vh;display:grid;grid-template-columns:290px 1fr}.admin-sidebar{position:sticky;top:0;height:100vh;padding:24px;background:linear-gradient(180deg,#111,#060606);border-right:1px solid rgba(201,164,92,.16);display:flex;flex-direction:column;gap:24px}.admin-logo{display:flex;align-items:center;gap:14px}.admin-nav{display:grid;gap:10px}.admin-nav button,.admin-nav a{border:1px solid rgba(201,164,92,.16);background:rgba(255,255,255,.035);color:#f7f2e8;text-align:left;border-radius:14px;padding:13px 14px;font-weight:800;text-decoration:none;cursor:pointer}.admin-nav button.active,.admin-nav a:hover,.admin-nav button:hover{background:linear-gradient(135deg,var(--gold),#f1d48b);color:#090909}.admin-sidebar .bottom{margin-top:auto}.admin-main{padding:28px;min-width:0}.admin-head{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:24px}.admin-head h1{font-family:var(--title-font);font-size:clamp(1.8rem,3vw,3rem);margin:4px 0 0}.admin-tab{display:none}.admin-tab.active{display:block}.admin-card{background:#101010;border:1px solid rgba(201,164,92,.16);border-radius:24px;padding:22px;box-shadow:0 20px 70px rgba(0,0,0,.22);margin-bottom:18px}.admin-grid{display:grid;grid-template-columns:1.2fr .9fr;gap:18px}.admin-table-wrap{overflow:auto}.admin-table{width:100%;border-collapse:collapse;min-width:720px}.admin-table th,.admin-table td{padding:13px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left}.admin-table th{color:var(--gold);font-size:.82rem;text-transform:uppercase;letter-spacing:.08em}.admin-table button{border:0;border-radius:10px;padding:9px 11px;margin:2px;font-weight:800;cursor:pointer}.admin-table .danger,.danger{background:#3a1111!important;color:#ffbdbd!important}.low-stock-row{background:rgba(255,193,7,.055)}.dashboard-cards{display:grid;grid-template-columns:repeat(4,minmax(150px,1fr));gap:14px;margin-bottom:18px}.dash-card{background:linear-gradient(180deg,#151515,#0b0b0b);border:1px solid rgba(201,164,92,.15);border-radius:18px;padding:18px}.dash-card span{color:#bdb5a6;font-weight:700}.dash-card strong{display:block;font-size:2rem;color:var(--gold);margin-top:6px}.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.product-form{display:grid;gap:14px}.upload-box{border:1px dashed rgba(201,164,92,.4);border-radius:16px;padding:14px}.check-row,.form-actions,.toolbar{display:flex;gap:12px;flex-wrap:wrap;align-items:center}.admin-alert-list{display:grid;gap:10px}.admin-alert-item,.empty-state{padding:13px 14px;background:#0b0b0b;border:1px solid rgba(255,255,255,.08);border-radius:14px}.category-pills{display:flex;gap:10px;flex-wrap:wrap}.category-pills span{padding:9px 12px;border-radius:999px;background:rgba(201,164,92,.14);border:1px solid rgba(201,164,92,.24);font-weight:800}.muted{color:#bdb5a6}.form-feedback{min-height:22px;color:var(--gold);font-weight:800}
@media(max-width:980px){.admin-login-page,.admin-shell-page,.admin-grid{grid-template-columns:1fr}.admin-sidebar{position:relative;height:auto}.dashboard-cards{grid-template-columns:repeat(2,1fr)}.admin-head{align-items:flex-start;flex-direction:column}.admin-login-side{display:none}}@media(max-width:620px){.dashboard-cards,.form-grid{grid-template-columns:1fr}.admin-main{padding:18px}.page-hero{padding-top:130px}.admin-login-card{min-height:100vh}}
