/* ══════════════════════════════════════════════════════════════════════
   INCREDIBLE HEIGHTS — PREMIUM GLOBAL CSS
   Applied across all pages for consistent premium look
   ══════════════════════════════════════════════════════════════════════ */

/* ── TYPOGRAPHY ── */
body { font-family: 'DM Sans', system-ui, -apple-system, sans-serif; }
h1, h2, h3, .section-heading, .page-banner h1 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ── SMOOTH SCROLLING ── */
html { scroll-behavior: smooth; }

/* ── SELECTION COLOR ── */
::selection { background: rgba(201,168,76,.3); color: #0a1628; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #c9a84c; border-radius: 3px; }

/* ── CARDS PREMIUM ── */
.ih-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ih-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,.14);
}

/* ── BUTTONS ── */
.btn-gold {
  background: linear-gradient(135deg, #e8c96d, #c9a84c);
  color: #0a1628; font-weight: 700; border: none;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(201,168,76,.35);
  transition: all 0.22s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,168,76,.45);
  color: #0a1628;
}

/* ── SECTION SPACING ── */
.home-section { padding-bottom: 8px; }

/* ── FORM FOCUS GLOW ── */
.form-control:focus,
.form-select:focus {
  border-color: #c9a84c !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,.18) !important;
}

/* ── PRODUCT/SERVICE CARD BADGES ── */
.card-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-size: .65rem; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase;
}
.card-badge-hot   { background: #fef2f2; color: #dc2626; }
.card-badge-new   { background: #f0fdf4; color: #16a34a; }
.card-badge-sale  { background: #fffbeb; color: #d97706; }
.card-badge-gold  { background: rgba(201,168,76,.12); color: #c9a84c; border: 1px solid rgba(201,168,76,.25); }

/* ── PRICE STYLING ── */
.price-main { font-family: 'Playfair Display', serif; font-weight: 800; color: #0a1628; }
.price-original { text-decoration: line-through; color: #94a3b8; font-size: .82em; }
.price-discount { color: #16a34a; font-weight: 700; font-size: .78em; }

/* ── PAGE BANNER OVERLAY TEXT ── */
.page-banner h1 { text-shadow: 0 2px 12px rgba(0,0,0,.3); }

/* ── LINK HOVER ── */
a { transition: color 0.15s; }
a:hover { color: #c9a84c; }

/* ── TABLE IMPROVEMENTS ── */
.table { border-radius: 12px; overflow: hidden; }
.table thead th {
  background: #0a1628; color: #fff;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .3px; border: none;
  padding: 14px 16px;
}
.table tbody td { padding: 13px 16px; vertical-align: middle; border-color: #e8edf5; }
.table-striped tbody tr:nth-of-type(odd) { background: #f8fafc; }

/* ── ALERTS ── */
.alert { border-radius: 12px; border: none; }
.alert-success { background: #f0fdf4; color: #166534; }
.alert-danger  { background: #fef2f2; color: #991b1b; }
.alert-warning { background: #fffbeb; color: #92400e; }
.alert-info    { background: #eff6ff; color: #1e40af; }

/* ── MODAL ── */
.modal-content { border-radius: 18px !important; border: none !important; }
.modal-header  { border-bottom: 1px solid rgba(255,255,255,.1); }

/* ── DROPDOWN ── */
.dropdown-menu {
  border-radius: 14px !important;
  box-shadow: 0 12px 36px rgba(0,0,0,.18) !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  padding: 8px !important;
}
.dropdown-item {
  border-radius: 8px !important;
  padding: 9px 14px !important;
  font-size: .875rem !important;
  font-weight: 500 !important;
  transition: background .14s !important;
}
.dropdown-item:hover { background: #f8fafc !important; }

/* ── LOADING ANIMATION ── */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* ── MOBILE TOUCH ── */
@media (max-width: 767px) {
  .ih-card { border-radius: 12px; }
  .btn-gold, .btn-dark-ih { border-radius: 10px; }
}
