/* ============================================
   CAJU BRAND — Main Stylesheet
   Branco & Dourado | Alta Costura
   ============================================ */

@property --reveal {
  syntax: '<percentage>';
  initial-value: -5%;
  inherits: true;
}

:root {
  --white:       #fbf7ef;
  --cream:       #f3ead7;
  --cream-dark:  #e8dcc4;
  --gold-light:  #e8c478;
  --gold:        #d4a54e;
  --gold-deep:   #a37728;
  --gold-shadow: rgba(212,165,78,0.35);
  --ink:         #1a120a;
  --ink-soft:    rgba(26,18,10,0.65);
  --ink-faint:   rgba(26,18,10,0.12);
  --border:      rgba(212,165,78,0.2);
  --radius:      2px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: transparent;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}
::selection { background: var(--gold); color: var(--white); }
a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; }
img { max-width: 100%; display: block; }
@media (hover: none) { body { cursor: auto; } .cursor-arrow, .cursor-ripple { display: none !important; } }
input, textarea, select, [contenteditable] { cursor: none !important; caret-color: var(--ink); }

/* ============ CURSOR ============ */
.cursor-arrow {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  pointer-events: none; z-index: 9999;
  will-change: transform;
  transition: width .3s cubic-bezier(.16,1,.3,1), height .3s cubic-bezier(.16,1,.3,1), filter .3s;
  filter: drop-shadow(0 2px 6px rgba(163,119,40,.5));
}
.cursor-arrow.hover { width: 44px; height: 44px; filter: drop-shadow(0 4px 14px rgba(212,165,78,.85)); }
.cursor-arrow .arrow-fill { fill: url(#cursorGold); }
.cursor-arrow .arrow-stroke { stroke: #1a120a; stroke-width: 0.8; fill: none; }
.cursor-ripple {
  position: fixed; top: 0; left: 0;
  width: 60px; height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  opacity: 0;
  transform: translate(-50%,-50%) scale(.4);
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .4s;
}
.cursor-ripple.show { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ============ ANIMATED BACKGROUND ============ */
#bgCanvas {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -3; pointer-events: none; background: var(--cream);
}
.bg-canvas-overlay {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(circle at center, transparent 0%, rgba(251,247,239,0.85) 100%);
}

/* ============ NAVBAR ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(251,247,239,.82);
  border-bottom: 1px solid var(--border);
  transition: padding .4s ease, background .4s, box-shadow .4s;
}
nav.scrolled {
  padding: 12px 48px;
  background: rgba(251,247,239,.96);
  box-shadow: 0 4px 30px rgba(212,165,78,.1);
}
.logo-link { display: flex; align-items: center; }
.nav-logo-img {
  height: 44px; width: auto;
  filter: drop-shadow(0 0 0px rgba(212,165,78,0));
  transition: filter .4s;
}
.logo-link:hover .nav-logo-img { filter: drop-shadow(0 0 14px rgba(212,165,78,.55)); }
.mobile-logo-img { height: 52px; width: auto; }
.footer-logo-img {
  height: 52px; width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(.9);
  opacity: .85;
  transition: opacity .3s;
}
.footer-logo-img:hover { opacity: 1; }

.nav-links {
  display: flex; gap: 40px; list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 10.5px; letter-spacing: .38em;
  text-transform: uppercase; font-weight: 400;
  color: var(--ink); position: relative; padding: 6px 0;
  transition: color .3s; cursor: none;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 1px; background: var(--gold);
  transition: all .4s cubic-bezier(.65,0,.35,1);
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-actions { display: flex; gap: 14px; align-items: center; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 0;
  background: transparent; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 14px; cursor: none;
  transition: all .35s; position: relative;
  text-decoration: none;
}
.icon-btn:hover {
  background: var(--ink); color: var(--gold-light);
  border-color: var(--ink); transform: translateY(-2px);
}
.icon-btn .count {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: var(--ink);
  width: 16px; height: 16px; font-size: 9px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0;
}

/* ============ MOBILE MENU ============ */
.hamburger { display: none; }
@media (max-width: 991px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 10px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 300;
  background: var(--white); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.65,0,.35,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; background: none;
  border: 1px solid var(--border); color: var(--ink);
  font-size: 16px; cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.mobile-close:hover { background: var(--ink); color: var(--gold); }
.mobile-logo { margin-bottom: 48px; margin-top: 20px; }
.mobile-nav { display: flex; flex-direction: column; gap: 0; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--ink-faint);
  transition: color .3s, padding-left .3s;
}
.mobile-nav a:hover { color: var(--gold-deep); padding-left: 12px; }
.mobile-divider {
  height: 1px; background: var(--border);
  margin: 16px 0;
}

/* ============ BUTTONS ============ */
.btn-caju {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; border: none;
  font-family: 'Italiana', serif;
  font-size: 16px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 400;
  cursor: none; position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.65,0,.35,1);
  text-decoration: none;
}
.btn-caju-primary {
  background: var(--ink); color: var(--cream);
}
.btn-caju-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.65,0,.35,1); z-index: 0;
}
.btn-caju-primary span { position: relative; z-index: 1; }
.btn-caju-primary:hover {
  color: var(--ink); transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--gold-shadow);
}
.btn-caju-primary:hover::before { transform: translateY(0); }

.btn-caju-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-caju-ghost::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ink); transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s cubic-bezier(.65,0,.35,1);
}
.btn-caju-ghost span { position: relative; z-index: 1; }
.btn-caju-ghost:hover { color: var(--cream); }
.btn-caju-ghost:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-caju-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  color: var(--ink); font-weight: 500;
}
.btn-caju-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--gold-shadow);
  color: var(--ink);
}

/* ============ PRODUCT CARD ============ */
.product-card, .product-card * {
  position: relative; overflow: hidden;
  background: transparent;
  border: none;
  transition: transform .4s;
  cursor: none;
}
.product-card:hover {
  transform: translateY(-2px);
}
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; background: #f4f4f4;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-overlay {
  display: none;
}
.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--ink); color: var(--white);
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 600;
  padding: 4px 10px;
}
.product-badge-sale {
  background: var(--ink); color: var(--gold-light);
  top: 16px; right: 16px; left: auto;
}
.product-card-body {
  padding: 12px 0 0; border: none; text-align: left;
}
.product-category {
  display: none;
}
.product-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 400; color: var(--ink-soft);
  margin-bottom: 4px; line-height: 1.4;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-price {
  display: flex; align-items: baseline; gap: 8px;
}
.product-price-current {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--ink);
  background: none; -webkit-background-clip: initial; background-clip: initial;
}
.product-price-old {
  font-size: 12px; color: rgba(26,18,10,.4); text-decoration: line-through;
}
.product-card form {
  display: none;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--ink); text-decoration: underline; }

/* ============ SECTION HEADERS ============ */
.section-eyebrow {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px; font-size: 10.5px; letter-spacing: .42em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 16px; font-weight: 400;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ""; width: 36px; height: 1px; background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Italiana', serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400; color: var(--ink);
  line-height: 1.05; margin-bottom: 8px;
}
.section-title .gold {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-subtitle {
  font-size: 15px; line-height: 1.8;
  color: var(--ink-soft); max-width: 540px;
}

/* ============ DIVIDER ============ */
.gold-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 20px 0;
}
.gold-divider::before, .gold-divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.gold-divider-icon { color: var(--gold); font-size: 14px; }

/* ============ FORMS ============ */
.form-caju .form-label {
  font-size: 9.5px; letter-spacing: .35em;
  text-transform: uppercase; color: var(--ink-soft);
  font-weight: 400; margin-bottom: 6px;
}
.form-caju .form-control, .form-caju .form-select {
  background: transparent;
  border: none; border-bottom: 1px solid var(--ink-faint);
  border-radius: 0; padding: 10px 0;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--ink); box-shadow: none;
  transition: border-color .3s;
}
.form-caju .form-control:focus, .form-caju .form-select:focus {
  border-bottom-color: var(--gold);
  box-shadow: none; background: transparent;
  outline: none;
}
.form-caju .form-control::placeholder { color: rgba(26,18,10,.35); }
.form-caju .invalid-feedback { font-size: 11px; color: #c0392b; }

/* Input with border box style (for admin) */
.input-box {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 10px 14px !important;
  background: rgba(251,247,239,.6) !important;
}
.input-box:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212,165,78,.15) !important;
}

/* ============ TOAST ============ */
.toast-caju {
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--border); border-radius: 0;
  padding: 14px 20px; min-width: 280px;
  font-size: 13px; letter-spacing: .02em;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: toast-in .4s cubic-bezier(.16,1,.3,1);
  margin-bottom: 8px;
}
.toast-caju i { color: var(--gold); }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink); color: var(--cream);
  padding: 80px 0 32px; position: relative; overflow: hidden;
  margin-top: 120px;
}
.footer-glow {
  position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 60vw; height: 120px;
  background: radial-gradient(ellipse at center, rgba(212,165,78,.25), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(251,247,239,.1);
}
.footer-tagline {
  font-size: 13px; color: rgba(251,247,239,.55);
  line-height: 1.7; margin: 16px 0 24px;
}
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,165,78,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 13px;
  transition: all .3s; cursor: none;
}
.social-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer-heading {
  font-size: 9px; letter-spacing: .45em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; font-weight: 400;
}
.footer-links-group ul { list-style: none; }
.footer-links-group ul li { margin-bottom: 12px; }
.footer-links-group ul a {
  font-size: 13px; color: rgba(251,247,239,.6);
  transition: color .3s;
}
.footer-links-group ul a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 11px; color: rgba(251,247,239,.35); letter-spacing: .05em; }
.payment-badges { display: flex; gap: 8px; }
.payment-badge {
  font-size: 10px; letter-spacing: .1em;
  border: 1px solid rgba(212,165,78,.25);
  padding: 4px 10px; color: rgba(251,247,239,.5);
}
.payment-badge i { color: var(--gold); margin-right: 4px; }

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 140px 0 80px; text-align: center; position: relative;
}
.page-header::before {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ============ CART ============ */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-size: 9px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 400; padding: 0 0 20px;
  border-bottom: 1px solid var(--ink-faint);
}
.cart-table td { padding: 24px 0; border-bottom: 1px solid var(--ink-faint); vertical-align: middle; }
.cart-product-img { width: 80px; height: 100px; object-fit: cover; }
.cart-qty-input {
  width: 60px; text-align: center;
  border: 1px solid var(--border); padding: 6px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  background: transparent; color: var(--ink);
}

/* ============ ORDER STATUS ============ */
.order-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  padding: 4px 12px; font-weight: 500;
}
.status-pending  { background: rgba(212,165,78,.15); color: var(--gold-deep); }
.status-paid     { background: rgba(39,174,96,.12);  color: #27ae60; }
.status-processing { background: rgba(52,152,219,.12); color: #3498db; }
.status-shipped  { background: rgba(155,89,182,.12);  color: #9b59b6; }
.status-delivered{ background: rgba(39,174,96,.18);   color: #1e8449; }
.status-cancelled{ background: rgba(231,76,60,.1);    color: #c0392b; }

/* ============ REVEAL ANIMATIONS ============ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
.animate-fade-up   { animation: fade-up .8s cubic-bezier(.16,1,.3,1) both; }
.animate-fade-in   { animation: fade-in .8s ease both; }
.animate-scale-in  { animation: scale-in .6s cubic-bezier(.16,1,.3,1) both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }
.delay-6 { animation-delay: .6s; }
.delay-7 { animation-delay: .7s; }
.delay-8 { animation-delay: .8s; }

/* Scroll-triggered reveals */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============ ADMIN PANEL ============ */

/* Reset do nav global dentro do painel admin */
.admin-layout nav {
  position: relative !important;
  top: auto !important; left: auto !important; right: auto !important;
  padding: 24px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  z-index: auto !important;
  transition: none !important;
  width: 100% !important;
}

/* Layout principal */
.admin-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 100vh;
  background: #f0f2f5;
  transition: grid-template-columns .35s cubic-bezier(.65,0,.35,1);
}
.admin-layout.sidebar-collapsed {
  grid-template-columns: 0px 1fr;
}

/* Sidebar */
.admin-sidebar {
  background: #000000;
  color: #fbf7ef;
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 3px 0 24px rgba(0,0,0,.18);
  width: 210px;
  transition: width .35s cubic-bezier(.65,0,.35,1);
  flex-shrink: 0;
}
.admin-layout.sidebar-collapsed .admin-sidebar {
  width: 0;
}

/* Header da sidebar — logo centralizada, resto alinhado à esquerda */
.admin-sidebar-header {
  padding: 28px 24px 24px;
  border-bottom: 1px solid rgba(212,165,78,.15);
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  flex-shrink: 0;
}
.admin-sidebar-header img {
  display: block; margin: 0 auto;
}
.admin-sidebar-header p {
  text-align: center;
}

/* Seções e itens — alinhados à esquerda */
.admin-nav { text-align: left; }
.admin-nav-section { text-align: left !important; padding-left: 24px; }
.admin-nav-item { text-align: left !important; justify-content: flex-start !important; }
.admin-nav-item i { text-align: left; }

/* Nav */
.admin-nav { flex: 1; padding: 8px 0; overflow-y: auto; overflow-x: hidden; }
.admin-nav-section {
  font-size: 9px; letter-spacing: .55em; text-transform: uppercase;
  color: rgba(212,165,78,.4); padding: 12px 24px 4px;
  white-space: nowrap;
}
.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 24px; font-size: 15px; font-weight: 400;
  letter-spacing: .04em; color: rgba(251,247,239,.65);
  transition: all .25s; border-left: 3px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.admin-nav-item:hover, .admin-nav-item.active {
  color: #fff;
  background: rgba(212,165,78,.1);
  border-left-color: var(--gold);
}
.admin-nav-item i { width: 20px; font-size: 14px; color: var(--gold); opacity: .65; flex-shrink: 0; }
.admin-nav-item:hover i, .admin-nav-item.active i { opacity: 1; }

/* Botão de esconder/mostrar sidebar */
.sidebar-toggle-btn {
  position: fixed; top: 18px; left: 218px;
  width: 32px; height: 32px;
  background: #1a120a; border: 1px solid rgba(212,165,78,.3);
  color: var(--gold); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 600;
  border-radius: 0 4px 4px 0;
  transition: left .35s cubic-bezier(.65,0,.35,1), background .2s;
  box-shadow: 3px 0 10px rgba(0,0,0,.15);
}
.sidebar-toggle-btn:hover { background: rgba(212,165,78,.15); }
.admin-layout.sidebar-collapsed .sidebar-toggle-btn { left: 8px; }

/* Área de conteúdo */
.admin-content {
  padding: 40px 48px; overflow-x: auto;
  background: #f0f2f5; min-height: 100vh;
}

/* Títulos e textos — mais escuros, grossos e grandes */
.admin-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 500; color: #000;
  margin-bottom: 6px; line-height: 1.1;
}
.admin-subtitle {
  font-size: 16px; font-weight: 500; color: #333;
  margin-bottom: 36px;
}

/* Força textos legíveis em todo o conteúdo admin */
.admin-content { color: #111; }
.admin-content p  { color: #111; font-weight: 400; }
.admin-content td { color: #111 !important; font-size: 15px !important; font-weight: 500 !important; }
.admin-content th { color: #000 !important; font-size: 11px !important; font-weight: 700 !important; opacity: .8 !important; }
.admin-content small { color: #444 !important; font-size: 13px !important; font-weight: 400 !important; }
.admin-content .text-muted,
.admin-content [style*="color:var(--ink-soft)"],
.admin-content [style*="color: var(--ink-soft)"] { color: #555 !important; }

/* Cards de estatísticas */
.stat-card {
  background: #ffffff; border: 1px solid rgba(212,165,78,.2);
  padding: 28px; position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.stat-card::before {
  content: ""; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold-light), var(--gold-deep));
  transform: scaleX(0); transition: transform .4s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(212,165,78,.2); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 34px; font-weight: 700; line-height: 1;
  color: #111;
  background: none;
  -webkit-background-clip: unset; background-clip: unset;
}
.stat-label {
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color:  #0a0705; font-weight: 600; opacity: .5; margin-top: 10px;
}
.stat-icon { position: absolute; top: 20px; right: 20px; font-size: 30px; color: rgba(212,165,78,.15); }

/* Tabelas */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: #222; font-weight: 700;
  padding: 0 16px 16px 0;
  border-bottom: 2px solid rgba(212,165,78,.35); text-align: left;
}
.admin-table td {
  padding: 18px 16px 18px 0; border-bottom: 1px solid rgba(0,0,0,.07);
  font-size: 15px; font-weight: 500; color: #111;
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(212,165,78,.04); }

.admin-badge {
  display: inline-block; font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; padding: 4px 12px; font-weight: 600;
}

/* Card container */
.admin-panel-card {
  background: #ffffff !important;
  border: 1px solid rgba(212,165,78,.2) !important;
  padding: 28px !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.07) !important;
}

/* Títulos dentro dos cards */
.admin-panel-card-title {
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #0d0906 !important;
}

/* Textos gerais nas tabelas e listas */
.admin-panel-card p,
.admin-panel-card td,
.admin-panel-card span:not(.order-status):not(.low-stock-badge):not(.admin-badge) {
  color: #0d0906;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1199px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 991px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: fixed; left: -260px; top: 0; height: 100vh; z-index: 500; transition: left .4s; width: 260px; }
  .admin-sidebar.open { left: 0; }
  .admin-content { padding: 24px 20px; padding-top: 80px; }
}
@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: clamp(28px, 8vw, 48px); }
  main { padding-top: 70px; }
  .page-header { padding: 96px 0 40px; }
  .page-header::before { width: 90%; }
}
@media (max-width: 575px) {
  nav { padding: 12px 16px; }
  .admin-content { padding: 16px; padding-top: 70px; }
}

/* ============ MOBILE (≤ 767px) ============ */
@media (max-width: 767px) {

  /* --- Seções gerais --- */
  .products-section  { padding: 56px 0; }
  .categories-section { padding: 56px 0; }
  .newsletter-section { padding: 56px 0; }
  .site-footer { padding: 56px 0 24px; margin-top: 64px; }
  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 32px !important; padding-bottom: 40px !important; }
  .footer-top > *:first-child { grid-column: 1 / -1; }

  /* --- Hero --- */
  .hero-section { padding: 80px 20px 48px; min-height: 90svh; }
  .hero-logo-wrap { max-width: 100%; margin-bottom: 28px; }
  .hero-logo-img { max-width: 90vw; }
  .hero-cta { margin-top: 32px; gap: 12px; flex-direction: column; align-items: center; }
  .hero-cta .btn-caju { width: 100%; max-width: 300px; justify-content: center; }

  /* --- Single carousel --- */
  .single-carousel { height: 65vh; min-height: 400px; max-height: 600px; }
  .single-slide-info { bottom: 40px; width: 90%; }
  .single-slide-name { font-size: clamp(20px, 5vw, 32px); }

  /* --- Showcase carousel --- */
  .showcase-carousel { height: 45vh; min-height: 260px; }
  .showcase-title { font-size: clamp(22px, 6vw, 40px); }

  /* --- Parallax: background-attachment:fixed não funciona no iOS --- */
  .parallax-section {
    background-attachment: scroll;
    background-position: center center;
    height: 40vh;
    min-height: 240px;
  }

  /* --- Newsletter --- */
  .newsletter-box { padding: 48px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--ink-faint); border-bottom: none; }

  /* --- Footer --- */
  .footer-top { gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* --- Produtos grid já definido, ajuste de gap --- */
  .products-grid { gap: 12px; }
  .product-card-body { padding: 10px 0 0; }
  .product-name { font-size: 12px; }
  .product-price-current { font-size: 13px; }

  /* --- Category cards --- */
  .category-info h3 { font-size: 20px; }

  /* --- Botões gerais --- */
  .btn-caju { padding: 14px 24px; font-size: 10px; }
}

/* ============ MOBILE PEQUENO (≤ 480px) ============ */
@media (max-width: 480px) {

  /* --- Hero --- */
  .hero-section { padding: 72px 16px 40px; }
  .hero-logo-img { max-width: 95vw; }

  /* --- Seções --- */
  .products-section  { padding: 40px 0; }
  .categories-section { padding: 40px 0; }
  .newsletter-section { padding: 40px 0; }

  /* --- Single carousel --- */
  .single-carousel { height: 55vh; min-height: 320px; }

  /* --- Newsletter box --- */
  .newsletter-box { padding: 36px 16px; }

  /* --- Footer --- */
  .site-footer { padding: 40px 0 20px; margin-top: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 24px !important; padding-bottom: 32px !important; }
  .footer-top > *:first-child { grid-column: 1 / -1; }

  /* --- Scroll indicator --- */
  .scroll-indicator { display: none; }

  /* --- Seção parallax menor --- */
  .parallax-section { height: 30vh; min-height: 180px; }
}

/* ============ NÚMEROS DOURADOS — MELHOR LEGIBILIDADE ============ */
/* Substitui o gradiente clip-text (ilegível) por uma cor sólida dourada profunda + fonte Plus Jakarta Sans bold */
.summary-total span:last-child,
.total-final span:last-child,
.order-value-display strong,
.single-slide-price,
.checkout-item-price,
.cart-total-cell,
.summary-total,
.shipping-fee,
.product-price-current,
.ap-price {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: #8a5a17 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
  letter-spacing: -.005em;
}
/* iOS: evita zoom em inputs (precisa font-size ≥ 16px) */
input, textarea, select {
  font-size: 16px !important;
}

/* ============ CURSOR NORMAL (remove cursor estilizado) ============ */
.cursor-arrow, .cursor-ripple { display: none !important; }
html, body, * { cursor: auto !important; }
a, button, [role="button"], label, summary,
.btn-caju, .qty-btn, .size-btn, .color-swatch, .thumb,
input[type="submit"], input[type="button"], input[type="checkbox"],
input[type="radio"], input[type="color"], input[type="file"], select {
  cursor: pointer !important;
}
input[type="text"], input[type="email"], input[type="password"],
input[type="number"], input[type="tel"], input[type="search"],
input[type="url"], textarea, [contenteditable] {
  cursor: text !important;
}
[disabled], .is-disabled, button:disabled { cursor: not-allowed !important; }
