
    /* MASTER THEME SYSTEM */
    :root {
      --bg-color: #101726;
      --bg-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
      --bg-size: 24px 24px;
      
      --primary: #0062b0;      
      --accent: #e05300;       
      --success: #10b981;
      
      --card-bg: #161f32;
      --text-main: #cbd5e1;
      --text-title: #ffffff;
      --text-italic: #64748b;
      
      --nav-bg: rgba(16, 23, 38, 0.85);
      --border-color: rgba(255, 255, 255, 0.05);
      --input-bg: #0f172a;
      --input-border: rgba(255, 255, 255, 0.1);
      --nav-link: #94a3b8;

      --card-shadow: none;
      --card-border: 1px solid rgba(255, 255, 255, 0.05);
    }

    [data-theme="light"] {
      --bg-color: #f4f9fd;
      --bg-image: linear-gradient(180deg, #e3f2fd 0%, #f4f9fd 100%);
      --bg-size: auto;
      
      --primary: #0062b0;      
      --accent: #e05300;       
      --success: #059669;
      
      --card-bg: #ffffff;
      --text-main: #526b82;   
      --text-title: #1e354a;  
      --text-italic: #617d98;
      
      --nav-bg: rgba(255, 255, 255, 0.9);
      --border-color: rgba(0, 98, 176, 0.1);
      --input-bg: #f4f7fa;
      --input-border: rgba(0, 98, 176, 0.15);
      --nav-link: #526b82;

      --card-shadow: 0 12px 32px rgba(30, 53, 74, 0.05);
      --card-border: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* GLOBAL RESETS */
    html, body {
      width: 100%;
      margin: 0;
      padding: 0;
    
      background-color: var(--bg-color); 
      transition: background-color 0.3s ease, color 0.3s ease;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }

    * {
      max-width: 100%;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
      color: var(--text-main);
      background: var(--bg-image);
      background-size: var(--bg-size);
      display: flex;
      flex-direction: column;
    }

    /* BLUR INTERACTION HOOK */
    .blur-wrapper {
      width: 100%;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      transition: filter 0.3s ease;
    }
    body.modal-open .blur-wrapper {
      filter: blur(8px);
      pointer-events: none;
    }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

/* Fixed typo: added missing dot to class and corrected comment syntax */
.navbar.rounded-search-header {
  width: 100%;
  max-width: 1100px;
  padding: 15px 15px 15px 15px;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 50px; /* Restores the premium floating pill shape */
  padding: 12px 28px;
  margin: 0px auto 0 auto; /* Gives a neat top floating space */
  width: 92%;
  max-width: 1200px;
  box-shadow: var(--card-shadow); 
  position: sticky;
  top: 10px;
  z-index: 2000;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header-logo {
  width: 28px;
  height: 28px;
  display: flex;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(243, 243, 243, 0.3);
}

/* LIGHT & DARK UTILITY OVERRIDES FOR FLOATING NAVBAR */
[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 98, 176, 0.15); 
  box-shadow: 0 8px 32px rgba(30, 53, 74, 0.05);
}

[data-theme="dark"] .navbar {
  background: rgba(16, 23, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}



.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.brand .title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--primary);
}

[data-theme="dark"] .brand .title {
  color: var(--text-title);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navlinks {
  display: flex;
  gap: 8px; /* Slightly tighter gap to allow padding breathing room */
}

/* Base Navigation Links */
.navlinks a {
  text-decoration: none;
  color: var(--nav-link);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 30px; /* Pill layout matches the outer navbar shape */
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Interactive Hover States */
.navlinks a:hover { 
  color: var(--primary); 
  background-color: rgba(0, 98, 176, 0.05); /* Very subtle dynamic hover tint */
}

[data-theme="dark"] .navlinks a:hover { 
  color: var(--text-title); 
  background-color: rgba(255, 255, 255, 0.03);
}

/* ACTIVE / SELECTED STATE STYLES 
   This connects perfectly to your active class JS injector
*/
.navlinks a.active {
  color: var(--primary) !important;
  font-weight: 700;
  background-color: rgba(0, 98, 176, 0.12) !important; /* Soft premium primary blue pill */
}

[data-theme="dark"] .navlinks a.active {
  color: var(--text-title) !important;
  background-color: rgba(255, 255, 255, 0.08) !important; /* Crisp white tint highlights for dark UI */
}

.theme-toggle-btn {
  width: 36px;
  height: 36px;
  
  transition: all 0.15s ease;
  background: var(--bg-color);
  border: 1px solid rgba(56, 82, 114, 0.1);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(243, 243, 243, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-btn svg {
  width: 20px; 
  height: 20px;
  transition: transform 0.3s ease;
}

.theme-toggle-btn .custom-light-icon { display: none; }
.theme-toggle-btn .custom-dark-icon { display: block; }

[data-theme="light"] .theme-toggle-btn .custom-dark-icon { display: none; }
[data-theme="light"] .theme-toggle-btn .custom-light-icon { display: block; }

    /* CORE WRAPPER CONTAINER */
    .viewport-container {
      margin-top: 40px;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      flex-grow: 1;
    }
   


    .card {
      width: 100%;
      max-width: 460px;
      background: var(--card-bg);
      border: var(--card-border);
      border-radius: 16px;
      padding: 36px 28px;
      box-shadow: var(--card-shadow);
      transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    h2 {
      text-align: center;
      color: var(--text-title);
      font-size: 22px;
      font-weight: 800;
      margin: 0 0 6px 0;
      letter-spacing: -0.5px;
    }

    .scarcity-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 20px;
      text-align: center;
    }
    .scarcity-pulse {
      width: 8px;
      height: 8px;
      background-color: var(--accent);
      border-radius: 50%;
      animation: pulse-glow 1.5s infinite;
    }
    @keyframes pulse-glow {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(224, 83, 0, 0.7); }
      70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(224, 83, 0, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(224, 83, 0, 0); }
    }

    
 /* --- SOLO GROUP BUY DISCOUNT BANNER (CENTERED) --- */
/* --- SOLO GROUP BUY DISCOUNT BANNER (FORCE CENTERED) --- */
.discount-tiers {
  display: flex !important;
  justify-content: center !important;  /* Lock Level 1: Flexbox centering */
  align-items: center !important;
  width: 100% !important;
  margin-bottom: 20px !important;
}

.tier-tab {
  width: 50% !important;                /* Retains the clean 50% width look */
  margin: 10px auto !important;            /* Lock Level 2: Auto-margin fallback centering */
  background: var(--input-bg);
  border: 0.5px solid var(--input-border);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Active / Hover States */
.tier-tab:hover {
  border-color: var(--primary);
  background: rgba(0, 98, 176, 0.08);
}

.tier-tab.active {
  border-color: var(--primary);
  background: rgba(0, 98, 176, 0.08);
  box-shadow: inset 0 0 0 1px var(--primary);
}

/* Internal Typography Hierarchy */
.tier-tab .tier-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 2px;
}

.tier-tab .tier-desc {
  font-size: 12px;
  color: var(--nav-link);
  margin-bottom: 6px;
}

.tier-tab .tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: var(--success);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Mobile Responsiveness Viewport Adjustments */
@media (max-width: 880px) {
  .tier-tab {
    width: 75% !important; /* Prevents text squeezing on compact devices */
  }
}


    /* FORM ELEMENTS STRUCTURE */
    .form-group {
      margin-bottom: 18px;
      display: flex;
      flex-direction: column;
    }

    .form-label-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
    }

    label {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text-title);
    }

    .label-hint {
      font-size: 11px;
      color: var(--nav-link);
    }

    input, select {
      width: 100%;
      padding: 13px 14px;
      border-radius: 8px;
      border: 1px solid var(--input-border);
      background: var(--input-bg);
      color: var(--text-title);
      font-family: inherit;
      font-size: 14.5px;
      outline: none;
      transition: border-color 0.2s, background-color 0.3s, color 0.3s;
    }

    input:focus, select:focus { border-color: var(--primary); }
    input.input-error { border-color: #ef4444; background-color: rgba(239, 68, 68, 0.02); }

    /* TOGGLE OPTIONAL SWITCHES BUTTONS */
    .optional-triggers {
      display: flex;
      gap: 10px;
      margin-bottom: 18px;
    }
    .toggle-email, .toggle-promo {
      flex: 1;
      background: var(--input-bg);
      color: var(--nav-link);
      border: 1px solid var(--input-border);
      font-size: 11px;
      padding: 10px 6px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: color 0.2s, background-color 0.2s;
    }
    .toggle-email:hover, .toggle-promo:hover { color: var(--text-title); background: var(--input-border); }

    /* PROMO CONTAINER SETUP */
    .promo-input-container {
      display: flex;
      gap: 8px;
    }
    .promo-input-container input { text-transform: uppercase; }
    .btn-apply-promo {
      background: var(--input-border);
      color: var(--text-title);
      border: 1px solid var(--border-color);
      padding: 0 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-apply-promo:hover { background: var(--border-color); }
    .promo-status-msg { font-size: 11px; margin-top: 5px; font-weight: 500; display: none; }
    .promo-status-msg.success { color: var(--success); display: block; }
    .promo-status-msg.error { color: #ef4444; display: block; }
    
    /* QUANTITY CONTROLS */
    .controls {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .qty-btn {
      width: 48px;
      height: 48px;
      background: var(--input-border);
      color: var(--text-title);
      font-size: 24px;
      font-weight: 600;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.2s, transform 0.1s;
    }

    .qty-btn:hover { background: var(--border-color); }
    .qty-btn:active { transform: scale(0.95); }

    .qty-field {
      flex: 1;
      height: 48px;
      padding: 0;
      text-align: center;
      font-size: 18px;
      font-weight: 700;
      background: var(--input-bg);
      border-radius: 8px;
      border: 1px solid var(--input-border);
    }

    /* DOUBLE SAVINGS BOX */
    .total-wrapper {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px dashed var(--input-border);
    }
    .flex-total-row { display: flex; justify-content: space-between; align-items: center; }
    .savings-note { font-size: 12px; font-weight: 600; color: var(--success); display: flex; flex-direction: column; gap: 2px; }
    .total { font-size: 16px; font-weight: 700; color: var(--text-title); }
    .total span { color: var(--accent); font-size: 19px; }

    /* ACTION STATIONS */
    .btn-action {
      width: 100%;
      padding: 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background-color 0.2s, transform 0.1s;
    }

    #proceed {
      background: var(--primary);
      color: #fff;
      margin-top: 20px;
      box-shadow: 0 4px 12px rgba(0, 98, 176, 0.2);
    }
    #proceed:hover { background: #005294; }
    #proceed:active { transform: scale(0.99); }

    .trust-container { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 16px; opacity: 0.75; }
    .trust-item { display: flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 500; color: var(--nav-link); }
    .trust-item svg { width: 14px; height: 14px; fill: currentColor; }

    /* ALL MODALS SHEETS */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10, 15, 30, 0.7);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      display: none;
      justify-content: center;
      align-items: flex-end;
      z-index: 2000;
    }
    .modal-overlay.show .modal-content { transform: translateY(0); }
    .modal-content {
      width: 100%;
      max-width: 460px;
      background: var(--card-bg);
      border-top: 1px solid var(--border-color);
      border-radius: 16px 16px 0 0;
      padding: 32px 28px;
      text-align: center;
      transform: translateY(100%);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
    }
    
    /* EXPLICIT ERROR POPUP DESIGN MODES */
    .error-modal-header { color: #ef4444 !important; }
    [data-theme="light"] .error-modal-header { color: #dc2626 !important; }
    .btn-error-close { background: #ef4444 !important; color: #fff !important; }
    .btn-error-close:hover { background: #dc2626 !important; }

    .modal-header-title { color: var(--accent); margin: 0 0 12px 0; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .modal-content p { font-size: 14px; color: var(--text-main); line-height: 1.6; margin: 0 0 24px 0; }
    #closePayWarning { background: var(--primary); color: #fff; }
    #closePayWarning:hover { background: #005294; }

    /* LOADER COMPONENT */
    #globalLoader { position: fixed; inset: 0; background: var(--bg-color); display: none; justify-content: center; align-items: center; z-index: 9999; }
    .back-home-link { margin-top: 24px; display: block; text-align: center; }
    .back-home-link a { color: var(--nav-link); text-decoration: none; font-size: 13.5px; font-weight: 500; transition: color 0.2s; }
    .back-home-link a:hover { color: var(--primary); }
    .spinner { width: 44px; height: 44px; border: 4px solid var(--card-bg); border-top: 4px solid var(--primary); border-radius: 50%; animation: spin 0.7s linear infinite; }
    @keyframes spin { to { transform: rotate(360deg); } }

    @media (max-width: 880px) {
      .navbar { padding: 12px 16px; flex-direction: column; gap: 12px; }
      .nav-actions { width: 100%; justify-content: space-between; gap: 14px; }
      .viewport-container { margin-top: 40px; padding: 20px; }
    }
    @media (min-width: 880px) {
      .modal-overlay { align-items: center; }
      .modal-content { border: 1px solid var(--border-color); border-radius: 12px; transform: scale(0.9); transition: transform 0.2s ease; }
      .modal-overlay.show .modal-content { transform: scale(1); }
    }

    /* RESPONSIVE MEDIA QUERIES & VIEWPORTS */
/* ==========================================================================
   RESPONSIVE LAYOUTS & MOBILE VIEWPORTS (Max-width: 880px)
   ========================================================================== */
@media (max-width: 880px) {
  
  /* 1. Keep the Navbar as a Row (Pill Layout) on Mobile */
  .navbar {
    width: 92%;
    max-width: 480px;
    margin: 0px auto 0 auto; 
    border-radius: 28px;
    padding: 12px 18px;
    position: sticky;
    top: 10px;
    z-index: 2000;
    display: flex;
    flex-direction: row; /* Horizontal alignment for brand logo & toggle button */
    justify-content: space-between;
    align-items: center;
  }

  .header-left {
    width: auto;
    justify-content: flex-start;
  }

  .nav-actions {
    width: auto;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* 2. Style and Show the Hamburger Button */
  .navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001; /* Keep above dropdown card */
  }

  .navbar-toggle .bar {
    display: block;
    width: 22px;
    height: 3px;
    background-color: var(--text-title);
    border-radius: 10px;
    transition: 0.3s ease-in-out;
  }

  /* Hamburger Morph into "X" when active */
  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* 3. Dropdown Menu Drawer (.navlinks) */
  .navlinks {
    display: none; /* Hidden by default on mobile */
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 75px; /* Floats perfectly under the navbar pill */
    right: 0;
    width: 240px;
    background: var(--nav-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    gap: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1999;
  }

  /* Active State triggered by JS */
  .navlinks.active {
    display: flex;
  }

  .navlinks a {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--nav-link);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
  }

  .navlinks a:hover {
    background-color: rgba(0, 98, 176, 0.08);
    color: var(--primary);
  }

  /* 4. Theme Toggle Button Styling */
  .theme-toggle-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 8px rgba(255, 255, 255, 0.692);
    transition: background-color 0.2s, border-color 0.2s, transform 0.1s;
  }

  .theme-toggle-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .theme-toggle-btn:active {
    transform: scale(0.92);
  }
}
:root {
  --footer-bg: #161f32; /* Matches your --card-bg for seamless entry */
  --footer-text-muted: #64748b;
  --footer-giant: rgba(255, 255, 255, 0.03);
}
[data-theme="light"] {
  --footer-bg: #0062b0; /* Vibrant primary wash for light mode visibility */
  --footer-text-muted: #e3f2fd;
  --footer-giant: rgba(255, 255, 255, 0.08);
}
/* --- CORE FOOTER LAYOUT ENGINE --- */
.site-footer {
  width: 100%;
  background: transparent;
  margin-top: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.footer-wave-container {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.footer-wave-container svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.footer-inner {
  background-color: var(--footer-bg);
  padding: 40px 40px 20px 40px;
  transition: background-color 0.3s ease;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--nav-link);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
[data-theme="light"] .footer-links a { color: #f4f9fd; }
.footer-links a:hover { color: var(--accent); }

/* CENTER COLUMN CTA */
.footer-cta-center {
  align-items: center;
  text-align: center;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-main);
  margin: 0 0 20px 0;
  max-width: 280px;
}
[data-theme="light"] .footer-desc { color: #e3f2fd; }

.footer-btn {
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 32px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s;
}
.footer-btn:hover { background: #ff6307; transform: translateY(-2px); }
.footer-btn:active { transform: translateY(0); }

/* RIGHT COLUMN STATS & LIVE CHANNELS */
.footer-right {
  align-items: flex-end;
  text-align: right;
}

.footer-socials {
  display: flex !important;
  gap: 14px !important;
  margin-bottom: 16px;
  align-items: center !important;
}

/* Strict bounding dimensions for the icon anchor footprint */
.footer-icon-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px !important;
  height: 32px !important;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer-icon-link:hover { transform: scale(1.15); }

/* Hard-lock on actual image sizes to bypass global theme overrides */
.footer-icon-link img.footer-icon {
  width: 100% !important;
  height: 100% !important;
  max-width: 32px !important;
  max-height: 32px !important;
  object-fit: contain !important;
  display: block !important;
}


[data-theme="light"] .footer-email-link { color: #e3f2fd; }
.footer-email-link:hover { color: var(--accent); text-decoration: underline; }

.footer-copy {
  font-size: 12px;
  color: var(--footer-text-muted);
  margin: 0;
  line-height: 1.4;
}

.footer-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 10px;
}

.footer-attribution {
  font-size: 9px;
  color: var(--footer-text-muted);
  margin-top: 8px;
  opacity: 0.5;
}
.footer-attribution a { color: inherit; text-decoration: underline; }

/* GIANT TYPOGRAPHY BACKGROUND MARK */
.footer-giant-brand {
  font-size: 8vw;
  font-weight: 900;
  text-align: center;
  color: var(--footer-giant);
  letter-spacing: -2px;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  margin-top: 20px;
  text-transform: uppercase;
}

/* --- MOBILE STACK BREAKPOINT COMPLIANCE --- */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    align-items: center;
    padding-bottom: 32px;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .footer-right {
    align-items: center;
    text-align: center;
  }
  .footer-socials {
    justify-content: center !important;
    margin-bottom: 12px;
  }
  .footer-icon-link {
    width: 36px !important;
    height: 36px !important;
  }
  .footer-icon-link img.footer-icon {
    max-width: 36px !important;
    max-height: 36px !important;
  }
  .footer-giant-brand {
    font-size: 25vw;
    margin-top: 24px;
  }}