/* sombakima.com - 2026 Modern eCommerce */
:root {
  --font-display: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --color-bg: #0a0a0f;
  --color-surface: #12121a;
  --color-surface-2: #1a1a24;
  --color-text: #f0f0f5;
  --color-text-muted: #9898a6;
  --color-accent: #c9a86c;
  --color-accent-2: #e8d4b8;
  --color-accent-glow: rgba(201, 168, 108, 0.35);
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a1520 40%, #0f0d14 100%);
  --gradient-card: linear-gradient(180deg, rgba(26,26,36,0.9) 0%, rgba(18,18,26,0.95) 100%);
  --gradient-gold: linear-gradient(135deg, #c9a86c 0%, #e8d4b8 50%, #c9a86c 100%);
  --shadow-soft: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px var(--color-accent-glow);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-2); }

/* Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
main { min-height: 60vh; padding: 2rem 0 4rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient-gold);
  color: #0a0a0f;
  box-shadow: 0 4px 20px var(--color-accent-glow);
}
.btn-primary:hover { box-shadow: var(--shadow-glow); }
.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-secondary:hover {
  background: rgba(201, 168, 108, 0.15);
  box-shadow: 0 0 24px var(--color-accent-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--color-text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.site-header .logo { flex-shrink: 0; }
.header-actions { margin-left: auto; flex-shrink: 0; }
.logo {
  display: flex;
  align-items: center;
  gap: 0.10rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.logo i { color: var(--color-accent); font-size: 1.5rem; }
.logo:hover { color: var(--color-text); }

/* Main nav – left side, major pages */
.main-nav { display: flex; align-items: center; gap: 0.25rem; min-width: 0; }
.main-nav-list { display: flex; list-style: none; gap: 0.15rem; flex-wrap: nowrap; align-items: center; }
.main-nav-list li { flex-shrink: 0; }
.main-nav a {
  display: block;
  padding: 0.5rem 0.65rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-text); background: rgba(255,255,255,0.06); }
.main-nav .mega-dropdown > a .fa-chevron-down { margin-left: 0.2rem; opacity: 0.8; }

/* Mega menu – all pages */
.mega-dropdown { position: relative; }
.mega-trigger { font-weight: 600; }
.mega-dropdown .mega-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 720px;
  max-width: 900px;
  padding: 1.75rem 2rem;
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}
.mega-dropdown:hover .mega-content { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px); }
.mega-column { min-width: 0; }
.mega-column h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mega-column h4 i { font-size: 0.85rem; opacity: 0.9; }
.mega-column h4 + ul { margin-bottom: 1.25rem; }
.mega-column h4 + ul:last-child { margin-bottom: 0; }
.mega-content ul { list-style: none; }
.mega-content ul a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition), padding-left var(--transition);
}
.mega-content ul a:hover { color: var(--color-accent); padding-left: 4px; }

/* Account dropdown */
.account-dropdown { position: relative; }
.account-dropdown .dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  min-width: 200px;
  padding: 0.5rem;
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  list-style: none;
}
.account-dropdown:hover .dropdown-content { opacity: 1; visibility: visible; }
.dropdown-content a { display: block; padding: 0.6rem 1rem; border-radius: 6px; }

/* Header actions – right side, icon-only to prevent overlap */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.10rem;
}
.header-actions-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  margin: 0 0.25rem;
  flex-shrink: 0;
}
.header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.header-actions a.cart-link { position: relative; }
.header-actions a:hover { color: var(--color-accent); background: rgba(255,255,255,0.06); }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0a0a0f;
  background: var(--color-accent);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Google Translate language switch */
.header-lang-switch {
  min-width: 80px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  border-radius: var(--radius-sm);
  background: rgba(18,18,26,0.85);
  border: 1px solid rgba(255,255,255,0.12);
}
.header-lang-switch .goog-te-gadget {
  font-size: 0;
}
.header-lang-switch .goog-te-gadget span {
  display: none;
}
.header-lang-switch select.goog-te-combo {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  padding: 0.15rem 0.25rem;
  outline: none;
}
.header-lang-switch select.goog-te-combo option {
  color: #000;
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, var(--color-accent-glow) 0%, transparent 50%);
  pointer-events: none;
}
.hero-overlay { position: relative; z-index: 1; width: 100%; }
.hero-content {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 2.75rem 2.5rem 2.5rem;
  border-radius: 28px;
  background: rgba(10,10,15,0.85);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  backdrop-filter: blur(28px);
  overflow: hidden;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 15% 0%, rgba(201,168,108,0.32) 0%, transparent 55%);
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-content > * {
  position: relative;
  z-index: 1;
}
.hero-title {
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 62px;
  letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}
.hero-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Section titles */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: var(--color-text-muted); max-width: 560px; margin: 0 auto; }

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(201,168,108,0.2);
  border-color: rgba(201,168,108,0.25);
}
.product-card-image {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 3/4;
  background: var(--color-surface-2);
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.badge {
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
}
.badge-new { background: #22c55e; color: #0a0a0f; }
.badge-sale { background: #ef4444; color: #fff; }
.badge-featured { background: var(--gradient-gold); color: #0a0a0f; }
.product-card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
  background: var(--color-surface);
  color: #f0f0f5;
}
.product-card-title {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  line-height: 1.4;
  color: #f0f0f5;
}
.product-card-title a { color: #f0f0f5; }
.product-card-title a:hover { color: var(--color-accent); }
.product-card-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-card-price .current { font-weight: 700; font-size: 1.1rem; color: #c9a86c; }
.product-card-price .old { font-size: 0.9rem; color: #9898a6; text-decoration: line-through; }

/* Category blocks */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.category-block {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: var(--color-surface-2) center/cover no-repeat;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-block-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 40%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
  pointer-events: none;
}
.category-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.category-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.category-block h3 { position: relative; z-index: 2; color: #fff; font-size: 1.2rem; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* Features strip */
.features { padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.features .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.features i { font-size: 1.75rem; color: var(--color-accent); margin-bottom: 0.5rem; }
.features h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.features p { font-size: 0.85rem; color: var(--color-text-muted); }

/* Footer */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--color-text-muted); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul a { display: block; padding: 0.35rem 0; color: var(--color-text-muted); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--color-accent); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Newsletter */
.newsletter-form { display: flex; gap: 0.5rem; max-width: 360px; margin-top: 1rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--color-surface-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: var(--color-text-muted); }
.newsletter-form .btn { white-space: nowrap; }

/* Cookie consent bar */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-consent.show { display: flex; }
.cookie-consent p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; flex: 1; min-width: 260px; }
.cookie-consent .cookie-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 500; font-size: 0.9rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-surface-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}
.form-group textarea { min-height: 140px; resize: vertical; }
input[type="number"] { max-width: 100px; }

/* Page headers */
.page-header { text-align: center; padding: 2.5rem 0; }
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p { color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.alert-success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.alert-error { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.alert-info { background: rgba(201,168,108,0.15); border: 1px solid rgba(201,168,108,0.3); color: var(--color-accent-2); }

/* Product detail page */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; } }
.product-gallery { position: sticky; top: 100px; }
.product-gallery-main {
  aspect-ratio: 3/4;
  background: var(--color-surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.product-gallery-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.product-gallery-thumbs img:hover, .product-gallery-thumbs img.active { border-color: var(--color-accent); }
.product-info h1 { margin-bottom: 0.5rem; font-size: 1.75rem; }
.product-info .price { font-size: 1.5rem; font-weight: 700; color: var(--color-accent); margin: 1rem 0; }
.product-info .price .old { font-size: 1.1rem; color: var(--color-text-muted); text-decoration: line-through; margin-left: 0.5rem; }
.product-options { margin: 1.5rem 0; }
.product-options .form-group { margin-bottom: 1rem; }
.add-to-cart-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-top: 1.5rem; }
.quantity-selector { display: flex; align-items: center; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); overflow: hidden; }
.quantity-selector button {
  width: 44px;
  height: 44px;
  background: var(--color-surface-2);
  border: none;
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition);
}
.quantity-selector button:hover { background: rgba(255,255,255,0.1); }
.quantity-selector input {
  width: 52px;
  height: 44px;
  text-align: center;
  border: none;
  background: var(--color-surface-2);
  color: var(--color-text);
  font-size: 1rem;
}

/* Shop sidebar */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }
.shop-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.shop-sidebar h3 { font-size: 1rem; margin-bottom: 1rem; }
.shop-sidebar ul { list-style: none; }
.shop-sidebar ul a, .shop-sidebar label { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0; color: var(--color-text-muted); font-size: 0.9rem; cursor: pointer; }
.shop-sidebar ul a:hover, .shop-sidebar label:hover { color: var(--color-accent); }
.shop-toolbar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.shop-toolbar select {
  padding: 0.5rem 1rem;
  background: var(--color-surface-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.9rem;
}

/* Cart table */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cart-table th { color: var(--color-text-muted); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }
.cart-table img { width: 80px; height: 100px; object-fit: cover; border-radius: 8px; }
.cart-totals { max-width: 360px; margin-left: auto; margin-top: 2rem; padding: 1.5rem; background: var(--color-surface); border-radius: var(--radius); }
.cart-totals .row { display: flex; justify-content: space-between; padding: 0.5rem 0; }
.cart-totals .total { font-size: 1.25rem; font-weight: 700; color: var(--color-accent); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; margin-top: 0.5rem; }

/* Mobile menu toggle */
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: none; color: var(--color-text); font-size: 1.5rem; cursor: pointer; }
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .main-nav-list { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-surface); flex-direction: column; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); max-height: 85vh; overflow-y: auto; }
  .main-nav.open .main-nav-list { display: flex; }
  .mega-dropdown .mega-content {
    position: static; min-width: 100%; left: 0; right: 0; transform: none;
    margin-top: 0.5rem; margin-bottom: 0.5rem; padding: 1rem;
    display: grid; grid-template-columns: 1fr; gap: 1.25rem;
    opacity: 1; visibility: visible; box-shadow: none; border: 1px solid rgba(255,255,255,0.06);
  }
  .mega-dropdown:hover .mega-content { transform: none; }
}
@media (max-width: 768px) {
  .hero { min-height: 420px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
