:root {
  --fp-primary: #6d28d9;
  --fp-primary-2: #9333ea;
  --fp-accent: #f59e0b;
}

body { background: #f6f7fb; }
[data-bs-theme="dark"] body { background: #14151a; }

/* Navbar */
.fp-nav {
  background: linear-gradient(90deg, var(--fp-primary), var(--fp-primary-2));
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}
.fp-nav .navbar-brand, .fp-nav .btn { color: #fff; }
.fp-accent { color: var(--fp-accent); }

/* Botón de marca */
.btn-fp {
  background: linear-gradient(90deg, var(--fp-primary), var(--fp-primary-2));
  border: none; color: #fff;
}
.btn-fp:hover { filter: brightness(1.07); color: #fff; }

/* Hero */
.fp-hero { background: linear-gradient(120deg, var(--fp-primary), var(--fp-primary-2)); }

/* Cards de producto */
.fp-card {
  border: none; border-radius: 16px; overflow: hidden;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}
.fp-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0, 0, 0, .12); }
.fp-thumb { aspect-ratio: 1; background: #fff; display: flex; align-items: center; justify-content: center; }
.fp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.fp-noimg { color: #cbd0dd; font-size: 2.4rem; }
.fp-noimg-lg { font-size: 5rem; padding: 3rem; }
.fp-title { font-size: .92rem; line-height: 1.2; color: #222; min-height: 2.2em; }
[data-bs-theme="dark"] .fp-title { color: #e8e8ef; }
.fp-price { font-weight: 700; color: var(--fp-primary); }
[data-bs-theme="dark"] .fp-price { color: #c4b5fd; }
.fp-price-lg { font-size: 2rem; font-weight: 800; color: var(--fp-primary); }
.fp-badge { background: var(--fp-accent); color: #3a2a00; }
.fp-footer { color: #9aa0ad; }

/* Detalle */
.fp-detail-img { background: #fff; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.fp-detail-img img { max-height: 380px; object-fit: contain; }

/* Cámara */
.fp-camera {
  position: relative; background: #000; overflow: hidden;
  aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center;
}
.fp-camera video, .fp-camera img { width: 100%; height: 100%; object-fit: cover; }

/* Dashboard */
.fp-stat { border: none; border-radius: 14px; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.fp-stat .fp-stat-num { font-size: 2rem; font-weight: 800; color: var(--fp-primary); }
