
:root {
  --primary: #ff5a3d;
  --primary-dark: #b42318;
  --primary-soft: #fff1ee;
  --accent: #ff9f1a;
  --accent-soft: #fff3d6;
  --success: #16a34a;
  --success-soft: #eafcf0;
  --danger: #e11d48;
  --danger-soft: #ffe7ee;
  --bg: #fff8f5;
  --surface: #ffffff;
  --surface-2: #fffdfb;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #f2d9d2;
  --shadow-sm: 0 10px 30px rgba(34, 20, 20, .06);
  --shadow-md: 0 22px 55px rgba(34, 20, 20, .10);
  --shadow-lg: 0 30px 90px rgba(34, 20, 20, .14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,90,61,.10), transparent 22%),
    radial-gradient(circle at top right, rgba(255,159,26,.12), transparent 18%),
    var(--bg);
  color: var(--text);
}
a { text-decoration: none; }
.text-muted { color: var(--muted) !important; }
.section-shell { padding: 70px 0; }
.topbar {
  background: rgba(38, 18, 18, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 40px rgba(80, 28, 22, .18);
}
.navbar-brand { font-weight: 800; letter-spacing: -.03em; }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8a63, #ff5a3d);
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 10px 22px rgba(255,90,61,.35);
}
.navbar .nav-link {
  color: rgba(255,255,255,.78);
  font-weight: 600;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: #fff; }
.hero-section { position: relative; overflow: hidden; }
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.14), transparent 30%);
  pointer-events: none;
}
.hero-card {
  position: relative;
  background: linear-gradient(135deg, #381313 0%, #8c1d18 55%, #ff5a3d 100%);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: 0 35px 100px rgba(120, 34, 24, .22);
  overflow: hidden;
}
.hero-card::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
}
.hero-badge,
.inline-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 700;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.hero-copy { color: rgba(255,255,255,.76); max-width: 680px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.hero-stat {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 16px 18px;
}
.hero-stat strong { display: block; color: #fff; font-size: 1.25rem; }
.hero-stat span { color: rgba(255,255,255,.72); font-size: .92rem; }
.hero-mini-card,
.auth-card,
.detail-card,
.checkout-card,
.summary-card,
.thanks-card,
.glass-card,
.info-card,
.panel-card {
  background: rgba(255,255,255,.96);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(226,232,240,.75);
  box-shadow: var(--shadow-md);
}
.hero-mini-card { position: relative; z-index: 1; }
.offer-signal {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--text);
  font-weight: 700;
}
.offer-signal::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34,197,94,.13);
}
.filter-strip {
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(226,232,240,.8);
  box-shadow: var(--shadow-sm);
  border-radius: 22px;
  padding: 14px;
}
.filter-strip .btn {
  border-radius: 999px;
  padding-inline: 1rem;
}
.section-kicker {
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.section-heading { letter-spacing: -.04em; }
.oferta-card {
  border-radius: 28px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  background: var(--surface);
  border: 1px solid rgba(226,232,240,.75) !important;
}
.oferta-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(255,90,61,.24) !important;
}
.offer-image-wrap { position: relative; overflow: hidden; }
.offer-image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .45s ease;
}
.oferta-card:hover .offer-image-wrap img { transform: scale(1.04); }
.badge-featured,
.badge-time {
  position: absolute;
  top: 14px;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.badge-featured { right: 14px; }
.badge-time {
  left: 14px;
  background: rgba(123, 29, 24, .84);
  color: #fff;
}
.offer-meta {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.meta-chip,
.badge-stock,
.badge-soft,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  font-size: .84rem;
}
.meta-chip { background: var(--primary-soft); color: var(--primary-dark); }
.badge-stock { background: var(--accent-soft); color: #946200; border: 1px solid #ffe18d; }
.badge-soft { background: #eef4ff; color: #334155; }
.status-pill.success { background: var(--success-soft); color: #12793a; }
.status-pill.warning { background: var(--accent-soft); color: #8a6500; }
.status-pill.danger { background: var(--danger-soft); color: #b42318; }
.offer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
  padding-top: 1rem;
}
.old-price { text-decoration: line-through; color: #94a3b8; font-weight: 600; }
.new-price, .new-price-lg, .new-price-sm { color: #0a8f3d; font-weight: 800; letter-spacing: -.03em; }
.new-price { font-size: 2rem; }
.new-price-lg { font-size: clamp(2rem, 4vw, 3rem); }
.new-price-sm { font-size: 1.7rem; }
.savings-box {
  background: linear-gradient(135deg, #ecfdf3, #ddfce7);
  color: #128145;
  border-radius: 18px;
  padding: 12px 14px;
  font-weight: 800;
}
.empty-box {
  background: rgba(255,255,255,.96);
  border-radius: 28px;
  border: 1px solid rgba(226,232,240,.75);
  box-shadow: var(--shadow-sm);
}
.footer-app {
  background: linear-gradient(135deg, #381313, #7a2016 60%, #ff5a3d);
  position: relative;
  overflow: hidden;
}
.footer-app::before {
  content: '';
  position: absolute;
  inset: auto auto -80px -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
}
.metric-box,
.metric-panel {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(226,232,240,.75);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.metric-panel .metric-label,
.metric-box .metric-label { color: var(--muted); font-size: .92rem; display: block; }
.metric-value {
  display: block;
  margin-top: .45rem;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
}
.metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 1.25rem;
}
.panel-hero {
  background: linear-gradient(135deg, #381313, #8c1d18 70%, #ff5a3d);
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.panel-hero p { color: rgba(255,255,255,.78); }
.data-table-card {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(226,232,240,.78);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.table thead th {
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom-color: var(--border);
}
.table tbody td { border-color: rgba(226,232,240,.7); }
.checkout-thumb {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
}
.check-blob {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success-soft);
  color: var(--success);
  font-size: 2.6rem;
}
.coupon-box {
  background: linear-gradient(135deg, #fff8f7, #fff1ee);
  border: 1px dashed #ff9b86;
  border-radius: 22px;
  padding: 24px;
}
.benefit-list { display: grid; gap: 12px; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}
.benefit-item i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 12px;
}
.form-control, .form-select {
  border-radius: 18px;
  padding: .9rem 1rem;
  border-color: #dbe4f0;
  background: rgba(255,255,255,.98);
}
.form-control:focus, .form-select:focus {
  border-color: rgba(255,90,61,.45);
  box-shadow: 0 0 0 .25rem rgba(255,90,61,.12);
}
.btn {
  font-weight: 800;
  border-radius: 16px;
  padding: .85rem 1.1rem;
}
.btn-primary {
  background: linear-gradient(135deg, #ff6b4d, #ff5a3d);
  border-color: #ff5a3d;
  box-shadow: 0 12px 28px rgba(255,90,61,.24);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-warning {
  background: linear-gradient(135deg, #ffb347, #ff9f1a);
  border-color: #ff9f1a;
}
.btn-outline-light:hover,
.btn-light:hover { transform: translateY(-1px); }
.login-split {
  background: linear-gradient(135deg, #381313, #8c1d18 70%, #ff5a3d);
  color: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.login-side {
  padding: 38px;
  position: relative;
}
.login-side::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
}
.login-panel {
  background: rgba(255,255,255,.98);
  border-radius: 28px;
  padding: 32px;
  min-height: 100%;
}
.detail-visual {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.detail-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.sticky-col { position: sticky; top: 100px; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.how-card {
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(226,232,240,.75);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.how-card .step {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-banner {
  background: linear-gradient(135deg, #6f1616, #ff5a3d);
  color: #fff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.price-grid { display:flex; align-items:center; gap: 14px; flex-wrap: wrap; }
.divider-soft { height: 1px; background: linear-gradient(90deg, transparent, rgba(100,116,139,.26), transparent); }
.small-note { font-size: .92rem; color: var(--muted); }
@media (max-width: 991px) {
  .hero-card { padding: 34px; }
  .hero-stats,
  .how-grid { grid-template-columns: 1fr; }
  .sticky-col { position: static; }
  .login-side { padding: 28px; }
}
@media (max-width: 768px) {
  .hero-card { padding: 26px; border-radius: 26px; }
  .hero-mini-card, .auth-card, .detail-card, .checkout-card, .summary-card, .thanks-card, .panel-card { border-radius: 24px; padding: 22px; }
  .offer-image-wrap img { height: 220px; }
  .detail-visual img { min-height: 260px; }
  .filter-strip { padding: 12px; }
}


.page-shell{min-height:calc(100vh - 180px);}
.navbar-actions .btn.active,
.navbar .nav-link.active{box-shadow:0 0 0 1px rgba(255,255,255,.18) inset;}
.panel-hero{position:relative;overflow:hidden;}
.panel-hero::after{content:"";position:absolute;inset:auto -40px -40px auto;width:180px;height:180px;background:radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);pointer-events:none;}


.progress-bar {
  background: linear-gradient(90deg, #ff8a63, #ff5a3d);
}
.navbar-toggler {
  border-color: rgba(255,255,255,.18);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 .22rem rgba(255,255,255,.12);
}
.btn-outline-light {
  border-color: rgba(255,255,255,.28);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.45);
}
.btn-light {
  background: #fff7f4;
  border-color: #ffd8d0;
  color: #7a2016;
}
.btn-light:hover {
  background: #fff1ee;
  border-color: #ffc8bb;
  color: #7a2016;
}
.btn-primary,
.btn-warning {
  color: #fff;
}
.btn-primary:hover,
.btn-warning:hover {
  color: #fff;
}
.section-kicker,
.text-primary {
  color: var(--primary-dark) !important;
}
.offer-meta .meta-chip {
  background: linear-gradient(135deg, #fff1ee, #ffe2dc);
  color: #8c1d18;
}
.inline-badge {
  background: rgba(255,255,255,.16);
}
