/* COMPLETE RESPONSIVE STYLESHEET - Peye Bouste - ULTRA COMPACT VERSION */

/* BASE */
* { box-sizing: border-box; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f4f6;
  color: #111827;
  line-height: 1.4;
}

a{ text-decoration: none; }

/* CONTAINER */
.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.header{
  background:#15305d ;
  color: #fff;
  padding: 20px 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header .logo{
  font-weight: 700;
  font-size: 26px;
  color: #fff;
}

.header .logo a{
  color: #e5f0ff;        /* brighter, high contrast */
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.4px;
}

.header .logo a:hover{
  color: #b2c3df;
}


.header .nav{
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .nav a{
  color: #e5e7eb;
  font-size: 22px;
  transition: color .2s;
}

.header .nav a:hover{ color: #e40808; }

.header .nav a.btn{
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 500;
  transition: all .2s;
  font-size: 16px;
}

.btn-primary{
  background: #10b981;
  color: #fff;
  border: none;
}

.btn-primary:hover{
  background: #059669;
  transform: translateY(-1px);
}

.btn-outline{
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover{
  background: #fff;
  color: #0b2f6a;
}

/* FLOATING POINTS (expand + collapse to right pill) */
@keyframes slideIn{
  from { transform: translateX(350px); }
  to   { transform: translateX(0); }
}

.floating-points{
  position: fixed;
  top: calc(var(--header-height) + var(--alert-height) + 16px);
  right: 16px;
  z-index: 1100;

  width: 280px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(102, 126, 234, 0.4);
  color: #fff;

  transform: translateX(350px);
  animation: slideIn 0.4s ease-out 0.3s forwards;
}

.points-header{
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.points-header i{ font-size: 1.1rem; }

.points-header span{
  white-space: nowrap;
  font-weight: 600;
}

.toggle-points{
  margin-left: auto;
  transition: transform .2s;
  cursor: pointer;
}

.toggle-points:hover{ transform: rotate(180deg); }

.points-body{
  padding: 0 20px 20px;
  display: block;
}

.points-balance{
  text-align: center;
  margin-bottom: 16px;
}

.points-number{
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.points-label{
  font-size: 0.9rem;
  opacity: 0.9;
}

.points-actions{
  display: flex;
  gap: 10px;
}

.points-btn{
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}

.points-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.points-btn.secondary{
  background: rgba(255,255,255,0.2);
  color: white;
}

.points-btn:not(.secondary){
  background: #ffd700;
  color: #1e293b;
}

/* collapsed state: small pill at right, only star + arrow */
.floating-points.collapsed{
  width: auto;
  border-radius: 999px;
}

.floating-points.collapsed .points-header{
  padding: 10px 12px;
  border-radius: 999px;
}

.floating-points.collapsed .points-header span{
  display: none;
}

.floating-points.collapsed .points-body{
  display: none;
}

/* HERO SLIDER - HORIZONTAL TRACK */
.hero-slider{
  position: relative !important;
  height: 260px !important;
  margin: 24px 0 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25) !important;
  background: #020617;
}

.hero-slider .slides{
  height: 100% !important;
  position: relative !important;
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.hero-slider .slide{
  height: 100% !important;
  position: relative !important;
  width: 100% !important;
  flex-shrink: 0;
  display: flex !important;
  align-items: center !important;
}

.slide-overlay{
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 60px !important;
  gap: 48px !important;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0.3) 100%
  ) !important;
  color: #fff;
}

.slide-overlay h2{
  font-size: 3rem !important;
  font-weight: 900 !important;
  margin: 0 !important;
  line-height: 1.1 !important;
  text-shadow: 0 4px 16px rgba(0,0,0,0.8) !important;
  color: #fff !important;
}

.slide-overlay p{
  font-size: 1.4rem !important;
  margin: 0 !important;
  font-weight: 600 !important;
  max-width: 500px !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
  color: #fff !important;
}

.hero-btn{
  padding: 16px 42px !important;
  background: rgba(255,255,255,0.98) !important;
  color: #1f2937 !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  transition: all 0.4s !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
  align-self: flex-start !important;
  margin-top: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.hero-btn:hover{
  transform: translateY(-6px) scale(1.05) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4) !important;
  background: #fff !important;
}

.slide-arrow{
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: rgba(255,255,255,0.25) !important;
  backdrop-filter: blur(20px) !important;
  border: none !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 1.8rem !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  z-index: 10 !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
}

.slide-arrow:hover{
  background: rgba(255,255,255,0.4) !important;
  transform: translateY(-50%) scale(1.15) !important;
}

.slide-arrow.left{ left: 35px !important; }
.slide-arrow.right{ right: 35px !important; }

.dots{
  position: absolute !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 14px !important;
}

.dots .dot{
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.6) !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
}

.dots .dot.active{
  background: #fff !important;
  transform: scale(1.4) !important;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.4) !important;
}

/* FEATURE STRIP */
.feature-strip-wrapper{
  margin: 20px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #1f2937);
  padding: 20px 24px;
  border-radius: 16px;
}

.feature-strip{
  display: flex;
  width: max-content;
  animation: stripScroll 25s linear infinite;
}

@keyframes stripScroll{
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.feature-card.boxed{
  min-width: 320px;
  max-width: 320px;
  background: rgba(17,24,39,.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 2px solid rgba(14,165,233,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  margin-right: 24px;
  padding: 24px;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .3s;
}

.feature-card.boxed:last-child{ margin-right: 0; }

.feature-card.boxed:hover{
  background: rgba(2,6,23,.98);
  transform: translateY(-8px);
  border-color: #22c55e;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}

.feature-icon{ font-size: 40px; margin-bottom: 8px; }

.feature-card.boxed h4{
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 4px 0;
  color: #fff;
}

.feature-card.boxed p{ font-size: 14px; opacity: .9; }

/* OFFER CARDS */
.card-row{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.offer-card{
  height: 280px;
  padding: 24px 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
  cursor: pointer;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-card::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #10b981, #059669);
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}

.offer-card:hover{
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}

.offer-card:hover::before{ opacity: 1; }

.offer-card > *{ position: relative; z-index: 1; }

.offer-icon{
  font-size: 56px !important;
  color: #16a34a;
  margin-bottom: 16px;
  transition: all .3s;
}

.offer-card:hover .offer-icon{
  color: #fff;
  transform: scale(1.1);
}

.offer-icon-img{
  width: 72px !important;
  height: 72px !important;
  object-fit: contain;
  margin-bottom: 16px;
}

.offer-card h4{
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #111827;
  line-height: 1.2;
}

.offer-card .price{
  font-size: 24px;
  font-weight: 900;
  color: #dc2626;
  margin-bottom: 16px;
}

.offer-card button{
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 6px 20px rgba(22,163,74,.4);
}

.offer-card:hover button{
  background: #15803d;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(22,163,74,.5);
}

/* SECTION TITLES */
.home-section-title{
  margin: 24px 0 12px 0;
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  position: relative;
}

.home-section-title::after{
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* PAYMENT METHODS (targets your inline style block) */
div[style*="display:flex"][style*="gap:20px"]{
  display: flex !important;
  gap: 24px !important;
  justify-content: center !important;
  padding: 28px 0 !important;
  flex-wrap: wrap !important;
  margin: 24px 0 !important;
}

div[style*="display:flex"][style*="gap:20px"] > div{
  text-align: center !important;
  padding: 16px !important;
}

div[style*="display:flex"][style*="gap:20px"] > div img{
  width: 80px !important;
  height: 80px !important;
  object-fit: contain !important;
  margin-bottom: 8px !important;
}

/* FOOTER */
.footer{
  margin-top: 40px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #9ca3af;
  padding: 32px 20px 20px;
  font-size: 13px;
}

.footer .container{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-section h4{
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #10b981;
}

.footer-section h5{
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.footer-links{
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a,
.footer a{
  color: #d1d5db;
  transition: color .2s;
}

.footer-links a:hover,
.footer a:hover{ color: #10b981; }

.social-links{
  display: flex;
  gap: 12px;
}

.social-links a{
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.social-links a:hover{
  background: #10b981;
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom{
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p{
  margin: 0;
  font-size: 0.9rem;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  z-index: 2000;
  transition: transform .2s ease;
}

.whatsapp-float:hover{ transform: translateY(-3px); }

/* RESPONSIVE */
@media (max-width: 768px){
  .header{ padding: 10px 16px; }

  .header .container{
    flex-direction: column;
    gap: 0.8rem;
  }

  .header .nav{ gap: 6px; }

  .container{ padding: 0 12px; }

  /* .floating-points{
    right: 12px;
    width: 260px;
    top: 65px;
  } */

  .hero-slider{
    height: 140px;
    margin: 12px 0;
  }

  .slide-overlay{
    padding: 0 20px !important;
    gap: 16px !important;
  }

  .slide-overlay h2{ font-size: 20px !important; }
  .slide-overlay p{ font-size: 13px !important; }

  .card-row{
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }

  .offer-card{
    height: 240px;
    padding: 20px 16px;
  }

  .offer-icon{ font-size: 48px !important; }

  .feature-card.boxed{
    min-width: 260px;
    max-width: 260px;
    padding: 20px;
    margin-right: 20px;
  }

  .footer-content{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 480px){
  .hero-slider{ height: 120px; }

  .offer-card{
    height: 220px;
    padding: 16px 12px;
  }

  .offer-icon{ font-size: 42px !important; }

  .feature-card.boxed{
    min-width: 240px;
    max-width: 240px;
    padding: 16px;
  }

  .card-row{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .points-number{ font-size: 1.8rem; }
}
/* HAMBURGER MENU BUTTON */
.menu-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span{
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* MOBILE NAV BEHAVIOR */
@media (max-width: 768px){

  .menu-toggle{
    display: flex;
  }

  .header .nav{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b2f6a;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  }

  .header .nav.active{
    display: flex;
  }

  .header .nav a{
    font-size: 15px;
  }

  .header .nav a.btn{
    width: 80%;
    text-align: center;
  }
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px){

  .menu-toggle{
    margin-left: auto;   /* pushes it to the right */
  }

  .logo{
    margin-right: auto;  /* keeps logo on left */
  }
}
/* FIX HEADER ALIGNMENT ON MOBILE */
@media (max-width: 768px){

  /* keep header in one row */
  .header .container,
  .header-inner{
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  /* center logo */
  .header .logo{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  /* hamburger on right */
  .menu-toggle{
    display: flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* hide nav initially */
  .header .nav{
    top: 100%;
  }
}

/* FIX MOBILE HEADER HEIGHT + ALIGNMENT */
@media (max-width: 768px){

  /* restore proper header height */
  .header{
    padding: 14px 16px;
    min-height: 64px; /* IMPORTANT */
  }

  /* keep items in one row */
  .header .container,
  .header-inner{
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 64px;
  }

  /* center logo properly */
  .header .logo{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    line-height: 1;
  }

  /* hamburger on right */
  .menu-toggle{
    display: flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* dropdown menu spacing */
  .header .nav{
    top: 100%;
    padding-top: 20px;
  }
}

/* Header Profile Dropdown */
.profile-dropdown { position: relative; display: inline-block; }
.profile-btn {
  display: flex; align-items: center; gap: 10px; background: transparent;
  border: 2px solid #e5e7eb; border-radius: 50px; padding: 10px 18px;
  font-weight: 600; color: #374151; cursor: pointer; transition: all .25s;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.profile-btn:hover { border-color: #10b981; background: rgba(16,185,129,.05); }

.profile-avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 3px solid white; box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.profile-name { color: #ffffff; font-size: 15px; max-width: 120px; overflow: hidden; text-overflow: ellipsis; }

.dropdown-arrow {
  margin-left: 4px; transition: transform .2s ease; color: #9ca3af;
}

.profile-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.profile-menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 240px;
  background: white; border-radius: 16px; box-shadow: 0 25px 50px rgba(0,0,0,.2);
  border: 1px solid #f3f4f6; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999;
}

.profile-dropdown:hover .profile-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.menu-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  color: #374151; text-decoration: none; font-size: 15px; transition: all .2s;
  border-radius: 12px; margin: 2px 8px;
}
.menu-item {
  color: #374151 !important; /* Menu text */
}

.menu-item:hover { background: #e6ecf1; color: #10b981; transform: translateX(4px); }

.menu-divider { height: 1px; background: #f3f4f6; margin: 12px 16px; }

.logout { color: #ef4444 !important; }
.logout:hover { background: #fef2f2 !important; }

.wallet-pill {
  background: linear-gradient(135deg, #10b981, #059669); color: white;
  padding: 10px 20px; border-radius: 25px; font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 15px rgba(16,185,129,.3);
}

/* Mobile */
@media (max-width: 768px) {
  .profile-menu { right: 20px; top: 70px; min-width: 280px; }
  .profile-avatar { width: 36px; height: 36px; }
}


/* Boost page base */
.boost-body {
  background: #f4f6f9; /* same as home sections */
}

/* Wrapper */
.boost-wrapper {
  max-width: 1120px;
  margin: 40px auto 80px;
  padding: 0 16px;
}

/* Hero card */
.boost-hero-card {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  color: #ffffff;
  padding: 24px 28px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.25);
  margin-bottom: 32px;
  text-align: left;
}

.boost-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
}

.boost-subtitle {
  font-size: 15px;
  opacity: 0.95;
}

/* Two‑column layout */
.boost-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 24px;
}

/* Card styles (same look as index cards) */
.boost-form-card,
.boost-summary-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  padding: 28px 26px;
}

/* Sections */
.section-title {
  font-size: 18px;
  font-weight: 700;
  margin: 14px 0 12px;
  color: #111827;
}

/* Form layout */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #d1d5db;
  font-size: 15px;
  background: #f9fafb;
  transition: border .2s, box-shadow .2s, background .2s;
}

.form-group input:focus {
  outline: none;
  border-color: #10b981;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

/* Rows */
.form-row {
  display: flex;
  gap: 10px;
}

.form-row .half {
  flex: 1;
}

/* Summary card */
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
  color: #4b5563;
}

.summary-row strong {
  color: #111827;
}

.summary-divider {
  border-top: 1px dashed #e5e7eb;
  margin: 16px 0;
}

.summary-note {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 18px;
}

/* Points box */
.summary-points-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.gift-icon {
  font-size: 22px;
}

.points-title {
  font-size: 14px;
  font-weight: 700;
  color: #9a3412;
}

.points-text {
  font-size: 12px;
  color: #7c2d12;
}

/* Alerts */
.alert {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 14px;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* Button adjustments */
.boost-btn-desktop {
  width: 100%;
  margin-top: 20px;
}

.boost-btn-mobile {
  display: none;
}

/* Reuse existing primary button style */
.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,#10b981,#059669);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(16,185,129,0.4);
  transition: transform .15s, box-shadow .15s, filter .15s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(16,185,129,0.45);
}

/* Responsive */
@media (max-width: 900px) {
  .boost-layout {
    grid-template-columns: 1fr;
  }
  .boost-form-card,
  .boost-summary-card {
    padding: 22px 20px;
  }
  .boost-wrapper {
    margin-top: 24px;
  }
  .boost-btn-desktop {
    display: none;
  }
  .boost-btn-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 18px;
  }
}

.wallet-id{
  text-align: center;
  font-size: 13px;
  color: #f1f5f9;
  margin: 10px 0 14px;   /* pushes it slightly up */
  opacity: 0.95;
  letter-spacing: 0.2px;
  margin-top: -6px;
  margin-bottom: 12px;
}
