
   /* ==========================================================================
   THEME COLOR PALETTE & SEMANTIC VARIABLES
   ========================================================================== */
:root {
  --bg-sky: #eef5fc;            
  --bg-glow: #ffffff; /* Smooth light-mode radial core */
  --primary-blue: #0066c0;       
  --primary: #0062b0;  
  --primary-hover: #00529c;      
  --dark-slate: #385272; /* Light mode primary text */         
  --text-muted: #5e768e;         
  --pure-white: #ffffff; /* Light mode surface/card backgrounds */         
  --brand-orange: #ff9f1c;       
  --accent: #e05300;       
  --text-title: #1e354a;  

  --border-light: rgba(56, 82, 114, 0.08);
  --border-color: rgba(56, 82, 114, 0.08);
  --nav-link: #5e768e;
  --card-width: 320px;
  --card-height: 440px;
  --card-shadow: 0 15px 35px rgba(56, 82, 114, 0.08);
  --active-shadow: 0 20px 40px rgba(0, 102, 192, 0.18);
}

/* HIGH-PREMIUM DARK MODE OVERRIDES */
[data-theme="dark"] {
  --bg-sky: #0b0f19; /* Deep, sleek midnight canvas */
  --bg-glow: #131b2e; /* Muted inner glow to prevent visual fatigue */
  --pure-white: #161f32; /* Rich dark-slate surface card background */
  --dark-slate: #e2e8f0; /* Crisp high-contrast off-white body text */
  --text-title: #ffffff; /* Pure white header highlights */
  --text-muted: #94a3b8; /* Balanced slate-gray for captions and secondary data */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-color: rgba(255, 255, 255, 0.05);
  --nav-link: #94a3b8;
  --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  --active-shadow: 0 20px 40px rgba(0, 102, 192, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  /* Smooth global transition across color shifts */
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

body {
  background-color: var(--bg-sky);
  /* REPAIRED: Swapped hardcoded #ffffff with dynamic variable var(--bg-glow) */
  background-image: radial-gradient(circle at 50% 0%, var(--bg-glow) 0%, var(--bg-sky) 70%);
  color: var(--dark-slate);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}
    /* ==========================================================================
   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; }


    /* ==========================================================================
       MAIN CONTENT WRAPPER
       ========================================================================== */
    main {
      flex: 1;
      width: 100%;
      max-width: 1200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 20px 60px 20px;
    }

    header {
      text-align: center;
      margin-bottom: 35px;
      z-index: 10;
    }

    header h1 {
      font-size: 2.1rem;
      font-weight: 700;
      color: var(--dark-slate);
      margin-bottom: 10px;
      letter-spacing: -0.5px;
    }

    header h1 span {
      color: var(--primary-blue);
    }

    header p {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 600px;
      line-height: 1.6;
    }

    /* ==========================================================================
       SEARCH BAR
       ========================================================================== */
    .search-wrapper {
      position: relative;
      width: 100%;
      max-width: 460px;
      margin-bottom: 40px;
      z-index: 10;
    }

   .search-bar {
  width: 100%;
  background: var(--pure-white);
  border: 1px solid var(--border-color);
  padding: 16px 24px;
  padding-right: 140px;
  border-radius: 30px;
  color: var(--dark-slate);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
  box-shadow: var(--card-shadow);
}

/* Maintain dark mode compliance inside inputs */
[data-theme="dark"] .search-bar {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
}
    .search-bar::placeholder {
      text-transform: none;
      color: var(--text-muted);
      opacity: 0.7;
    }

    .search-bar:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 8px 25px rgba(0, 102, 192, 0.1);
    }

    .search-btn {
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--primary-blue);
      border: none;
      color: var(--pure-white);
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 22px;
      cursor: pointer;
      font-size: 13px;
      box-shadow: 0 4px 12px rgba(0, 102, 192, 0.15);
      transition: all 0.15s ease;
    }

    .search-btn:hover {
      background: var(--primary-hover);
      transform: translateY(-50%) scale(1.02);
    }

    /* ==========================================================================
       3D CAROUSEL & CARDS
       ========================================================================== */
    .carousel-section {
      width: 100%;
      max-width: 1200px;
      position: relative;
    }

    .swiper-container {
      width: 100%;
      padding-top: 20px;
      padding-bottom: 50px;
      overflow: visible !important;
    }

    .swiper-slide {
      width: var(--card-width);
      height: var(--card-height);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0.45;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .swiper-slide-active {
      opacity: 1;
    }

    .agent-card {
      position: relative;
      width: 100%;
      height: 100%;
      background: var(--pure-white);
      border: 1px solid var(--border-light);
      border-radius: 24px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: var(--card-shadow);
      transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .swiper-slide-active .agent-card {
      border-color: rgba(0, 102, 192, 0.2);
      box-shadow: var(--active-shadow);
    }

    .card-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .badge {
      font-size: 11px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      background: rgba(0, 102, 192, 0.05);
      border: 1px solid rgba(0, 102, 192, 0.1);
      color: var(--primary-blue);
    }

    .badge.elite { 
      color: var(--brand-orange); 
      background: rgba(255, 159, 28, 0.08);
      border-color: rgba(255, 159, 28, 0.2); 
    }

    /* Live Activity Pulsing Dot Styling */
    .live-ticker {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 600;
      color: var(--live-green);
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      background-color: var(--live-green);
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
      animation: pulseGreen 1.4s infinite;
    }

    @keyframes pulseGreen {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
      }
      70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
      }
      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
      }
    }

    .card-middle {
      margin-top: 20px;
      margin-bottom: 15px;
    }

    .promo-code-title {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--dark-slate);
      letter-spacing: -0.5px;
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .swiper-slide-active .promo-code-title {
      color: var(--primary-blue);
    }

    .agent-name {
      font-size: 0.88rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* Middle stats layout separating Commissions & Voucher Stock */
    .card-stats-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      background: var(--bg-sky);
      border-radius: 16px;
      padding: 12px 16px;
      margin-bottom: 15px;
      border: 1px solid rgba(56, 82, 114, 0.05);
    }

    .stat-box {
      display: flex;
      flex-direction: column;
    }

    .stat-label {
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--text-muted);
      font-weight: 600;
      margin-bottom: 2px;
    }

    .stat-value {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--dark-slate);
    }

    .swiper-slide-active .stat-value.highlight {
      color: var(--primary-blue);
    }

    .stat-value.orange {
      color: var(--brand-orange);
    }

    /* Activity tick log section at the bottom of the card */
    .tick-log {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: var(--text-muted);
      padding: 10px 0;
      border-top: 1px dashed rgba(56, 82, 114, 0.15);
      margin-bottom: 15px;
    }

    .tick-log i {
      color: var(--primary-blue);
    }

    .card-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--border-light);
      padding-top: 15px;
    }

    .card-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .rating {
      font-size: 11px;
      font-weight: 600;
      color: var(--brand-orange);
    }

    .rating span {
      color: var(--text-muted);
      font-size: 10px;
      font-weight: 500;
    }

    .action-circle-btn {
      width: 40px;
      height: 40px;
      background: var(--primary-blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--pure-white);
      font-size: 14px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 102, 192, 0.15);
      transition: all 0.15s ease;
    }

    .action-circle-btn:hover {
      transform: scale(1.08);
      background-color: var(--primary-hover);
    }

    @keyframes brandPulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 102, 192, 0.4); }
      50% { transform: scale(1.02); box-shadow: 0 0 20px 6px rgba(0, 102, 192, 0.2); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 102, 192, 0); }
    }

    .card-highlighted {
      animation: brandPulse 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      border-color: var(--primary-blue) !important;
    }

    .swiper-pagination-bullet {
      background: rgba(56, 82, 114, 0.2) !important;
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      background: var(--primary-blue) !important;
      width: 24px;
      border-radius: 5px;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 46px;
      background: var(--pure-white);
      border: 1px solid var(--border-light);
      border-radius: 50%;
      color: var(--dark-slate);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      box-shadow: 0 4px 15px rgba(56, 82, 114, 0.08);
      transition: all 0.15s;
    }

    .nav-btn:hover {
      background: var(--primary-blue);
      color: var(--pure-white);
      border-color: transparent;
      transform: translateY(-50%) scale(1.05);
    }

    .nav-btn.prev { left: -60px; }
    .nav-btn.next { right: -60px; }

      /* 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(--bg-sky);
    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);
  }
}
  .viewport-container {
    margin-top: 20px;
    padding: 16px;
  }

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


: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;
  } }
    @media (max-width: 1300px) {
      .nav-btn.prev { left: 10px; }
      .nav-btn.next { right: 10px; }
    }

   
    @media (max-width: 480px) {
      :root {
        --card-width: 280px;
        --card-height: 420px;
      }
      header h1 { font-size: 1.7rem; }
      .nav-btn { display: none; }
    }
