/* LifetimeLoot — AppSumo-inspired design system */

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --primary: #FF6234;
  --primary-dark: #E5501E;
  --primary-light: #FFF0EC;
  --accent: #FFCC00;
  --dark: #111827;
  --dark2: #1F2937;
  --text: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --green: #16A34A;
  --green-bg: #DCFCE7;
  --card-bg: #FFFFFF;
  --card-border: #E5E7EB;
  --bg: #FAFAF7;
  --hero-bg: #FFFBF0;
  --radius: 12px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.header-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #FF6234;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-size: 18px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.5px;
}

.logo-wordmark span {
  color: #FF6234;
}

/* Header search */
.header-search {
  flex: 1;
  max-width: 440px;
  position: relative;
}

.header-search input {
  width: 100%;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 9px 16px 9px 40px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.header-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 98, 52, 0.1);
}

.header-search input::placeholder {
  color: var(--text-light);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Header nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background: var(--bg);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: #FF6234;
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 98, 52, 0.35);
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  width: 100%;
  justify-content: center;
}

.btn-whatsapp svg {
  fill: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 17px;
  border-radius: 10px;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #E5E7EB;
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* =============================================
   CATEGORY BAR
   ============================================= */
.category-bar {
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
}

.category-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow-x: auto;
  gap: 4px;
  padding: 10px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-inner::-webkit-scrollbar {
  display: none;
}

.cat-chip {
  flex-shrink: 0;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  background: transparent;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.cat-chip:hover,
.cat-chip.active {
  color: #FF6234;
  background: #FFF0EC;
  border-color: #FF6234;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--hero-bg);
  padding: 72px 24px 52px;
  text-align: center;
  border-bottom: 1px solid #F0EDE4;
}

.hero-inner {
  max-width: 660px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 98, 52, 0.1);
  border: 1px solid rgba(255, 98, 52, 0.25);
  color: #FF6234;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  color: #111827;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -2px;
}

.hero h1 span {
  color: #FF6234;
}

.hero p {
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search-form {
  display: flex;
  align-items: center;
  max-width: 520px;
  margin: 0 auto 28px;
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.hero-search-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  color: var(--text);
  padding: 6px 0;
}

.hero-search-form input::placeholder {
  color: var(--text-light);
}

.hero-search-form button {
  background: #FF6234;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.hero-search-form button:hover {
  background: var(--primary-dark);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
}

.hero-trust span::before {
  content: '✓ ';
  color: #16A34A;
  font-weight: 800;
}

/* =============================================
   EXCLUSIVE SECTION
   ============================================= */
.exclusive-section {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  padding: 64px 24px;
  overflow: hidden;
  position: relative;
}

.exclusive-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 98, 52, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.exclusive-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.exclusive-badge {
  display: inline-block;
  background: rgba(255, 98, 52, 0.15);
  border: 1px solid rgba(255, 98, 52, 0.3);
  color: #FF6234;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.exclusive-content h2 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  line-height: 1.1;
}

.exclusive-content h2 span {
  color: #FF6234;
}

.exclusive-content p {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 28px;
  line-height: 1.7;
}

.exclusive-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 32px;
}

.excl-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
}

.excl-feature span {
  color: #22c55e;
  font-weight: 800;
}

.exclusive-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.excl-platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
}

.excl-platform.expired {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
}

.excl-platform.active {
  background: rgba(255, 98, 52, 0.12);
  border-color: rgba(255, 98, 52, 0.3);
  color: #fff;
}

.excl-status {
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  padding: 3px 10px;
}

.expired-tag {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.live-tag {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  padding: 18px 24px;
}

.trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
}

.t-icon {
  font-size: 18px;
}

/* =============================================
   DEALS SECTION
   ============================================= */
.deals-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #DCFCE7;
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: #16A34A;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  position: relative;
}

.available-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16A34A;
  animation: pulse 1.8s ease-in-out infinite;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

/* =============================================
   DEAL CARD
   ============================================= */
.deal-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 98, 52, 0.25);
}

.deal-card * {
  pointer-events: none;
}

.deal-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.deal-card-category {
  font-size: 11px;
  font-weight: 700;
  color: #FF6234;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.deal-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.deal-card-tagline {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.5;
}

.deal-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  font-size: 13px;
}

.star {
  font-style: normal;
  font-size: 13px;
}

.star.full {
  color: #F59E0B;
}

.star.empty {
  color: #D1D5DB;
}

.rating-score {
  font-weight: 700;
  color: #111827;
}

.rating-count {
  color: #9CA3AF;
  font-size: 12px;
}

.deal-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #E5E7EB;
  gap: 8px;
}

.deal-price-block {
  display: flex;
  flex-direction: column;
}

.deal-original-price {
  font-size: 12px;
  color: #9CA3AF;
  text-decoration: line-through;
  margin-bottom: 1px;
}

.deal-current-price {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.5px;
  line-height: 1;
}

.deal-current-price span {
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
}

.deal-lifetime-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #DCFCE7;
  color: #16A34A;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

/* =============================================
   DEAL PAGE (SINGLE DEAL)
   ============================================= */
.deal-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.deal-breadcrumb {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
}

.deal-breadcrumb a {
  color: #6B7280;
  transition: color 0.2s;
}

.deal-breadcrumb a:hover {
  color: var(--primary);
}

.deal-breadcrumb span {
  margin: 0 8px;
  color: #D1D5DB;
}

.deal-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.deal-main {}

.deal-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.deal-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.deal-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.deal-header-info h1 {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.deal-header-info .tagline {
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 12px;
}

.deal-section {
  margin-bottom: 40px;
}

.deal-section h2 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FF6234;
  display: inline-block;
}

.tldr-box {
  background: #FFFBF0;
  border: 1px solid #F0EDE4;
  border-radius: 12px;
  padding: 24px;
}

.tldr-box p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #111827;
}

.features-list li::before {
  content: '✓';
  color: #16A34A;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   DEAL SIDEBAR
   ============================================= */
.deal-sidebar {
  position: sticky;
  top: 88px;
}

.deal-cta-box {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-available {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #DCFCE7;
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: #16A34A;
  font-weight: 700;
  font-size: 13px;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 20px;
}

.cta-available::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16A34A;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.cta-price {
  font-size: 44px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -2px;
  line-height: 1;
}

.cta-price-note {
  font-size: 13px;
  color: #6B7280;
  margin-top: 4px;
  margin-bottom: 12px;
}

.cta-savings {
  display: inline-block;
  background: #FFF0EC;
  color: #FF6234;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #DCFCE7;
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 13px;
  color: #16A34A;
  font-weight: 600;
}

/* =============================================
   TIERS
   ============================================= */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.tier-card {
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
  position: relative;
}

.tier-card:hover {
  border-color: #FF6234;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(255, 98, 52, 0.15);
}

.tier-card.featured {
  border-color: #FF6234;
  background: #FFFBF0;
}

.tier-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF6234;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-name {
  font-size: 12px;
  font-weight: 800;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.tier-price {
  font-size: 38px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -1.5px;
  line-height: 1;
}

.tier-original {
  font-size: 13px;
  color: #9CA3AF;
  text-decoration: line-through;
  margin-top: 4px;
  margin-bottom: 16px;
}

.tier-features {
  list-style: none;
  margin-bottom: 20px;
}

.tier-features li {
  font-size: 13px;
  color: #111827;
  padding: 7px 0;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li::before {
  content: '✓';
  color: #16A34A;
  font-weight: 800;
  flex-shrink: 0;
}

/* =============================================
   VIDEO EMBED
   ============================================= */
.deal-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.deal-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: #111827;
  padding: 64px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.cta-section p {
  color: #9CA3AF;
  margin-bottom: 28px;
  font-size: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-email-link {
  color: #9CA3AF;
  font-size: 14px;
  transition: color 0.2s;
}

.cta-email-link:hover {
  color: #fff;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #1F2937;
  color: #6B7280;
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand .logo-wordmark {
  color: #fff;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  color: #6B7280;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
  transition: all 0.2s;
  text-decoration: none;
}

.whatsapp-link:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}

.footer-col h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #6B7280;
  font-size: 14px;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #6B7280;
}

.footer-bottom a {
  color: #6B7280;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* =============================================
   ADMIN STYLES
   ============================================= */
.admin-body {
  background: #F3F4F6;
  min-height: 100vh;
}

.admin-header {
  background: #111827;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.admin-title {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.admin-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

.admin-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
  padding: 28px;
  margin-bottom: 24px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th {
  background: #F9FAFB;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: #111827;
  border-bottom: 2px solid #E5E7EB;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #E5E7EB;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: #FAFAF7;
}

.badge-active {
  background: #DCFCE7;
  color: #16A34A;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.badge-inactive {
  background: #FEF2F2;
  color: #DC2626;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-control:focus {
  border-color: #FF6234;
  box-shadow: 0 0 0 3px rgba(255, 98, 52, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
}

.admin-login-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid transparent;
}

.alert-error {
  background: #FEF2F2;
  border-color: #FCA5A5;
  color: #DC2626;
}

.alert-success {
  background: #DCFCE7;
  border-color: #86EFAC;
  color: #16A34A;
}

/* =============================================
   EMPTY STATE
   ============================================= */
.empty-state {
  text-align: center;
  padding: 80px 24px;
}

.empty-state .icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.empty-state p {
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 24px;
}

/* =============================================
   UTILITY
   ============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* =============================================
   RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
  .header-search {
    display: none;
  }
}

/* =============================================
   RESPONSIVE — 900px
   ============================================= */
@media (max-width: 900px) {
  .deal-layout {
    grid-template-columns: 1fr;
  }

  .deal-sidebar {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }

  .exclusive-inner {
    grid-template-columns: 1fr;
  }

  .exclusive-visual {
    display: none;
  }

  .exclusive-features {
    grid-template-columns: 1fr;
  }

  .exclusive-content h2 {
    font-size: 28px;
  }
}

/* =============================================
   RESPONSIVE — 600px
   ============================================= */
@media (max-width: 600px) {
  .hero {
    padding: 48px 20px 40px;
  }

  .hero h1 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-search-form {
    flex-direction: column;
    padding: 10px;
    gap: 8px;
  }

  .hero-search-form input {
    width: 100%;
    padding: 10px;
  }

  .hero-search-form button {
    width: 100%;
    padding: 12px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .cta-section h2 {
    font-size: 26px;
  }

  .trust-strip-inner {
    gap: 20px;
  }

  .hero-trust {
    gap: 14px;
  }

  .admin-container {
    padding: 20px 16px;
  }

  .admin-login-box {
    padding: 28px 20px;
  }
}
