:root{
  --brand-blue:#0D2E5B;
  --brand-blue-dark:#164a8f;
  --brand-green:#5cb334;
  --brand-orange:#ee7321;
  --bg:#f7f9fc;
  --card:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
}
.dark{
  --bg:#0f172a;
  --card:#1e293b;
  --text:#f1f5f9;
  --muted:#94a3b8;
  --border:#334155;
}
*{
  -webkit-tap-highlight-color:transparent;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  overflow-x:hidden;
}
html,body{ 
    background:
    radial-gradient(circle at top left,#0D2E5B10,transparent 28%),
    radial-gradient(circle at bottom right,#F77B1410,transparent 28%),
    linear-gradient(to bottom,#F8FAFC,#F4F7FB);

    color:var(--text); 
    font-family:'Inter',system-ui,sans-serif; 
}
.bg-card{ background:var(--card); }
.hover\:bg-primary:hover{
    background:var(--brand-blue) !important;
}
/* =========================
   BIG MOBILE FRIENDLY BOXES
========================= */

/* SECTION */
.top-brand-section{
  width:100%;
}

/* HEADER */
.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

section h2{
    letter-spacing:-0.03em;
}


/*.section-head h2{*/
/*  font-size:24px;*/
/*  font-weight:800;*/
/*  color:#111;*/
/*}*/

/* SLIDER BUTTONS */
.slider-buttons{
  display:flex;
  gap:10px;
}

.slide-btn{
  width:42px;
  height:42px;
  border:none;
  border-radius:16px;

  background:rgba(255,255,255,.75);
  backdrop-filter:blur(18px);

  color:#0D2E5B;

  font-size:18px;
  cursor:pointer;

  border:1px solid rgba(255,255,255,.4);

  box-shadow:
  0 10px 30px rgba(13,46,91,.08);

  transition:.3s ease;
}

.slide-btn:hover{
    background:#0D2E5B;
    color:#fff;
    transform:translateY(-2px);
}

/* SLIDER */
.brand-slider{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding-bottom:6px;
}

.brand-slider::-webkit-scrollbar{
  display:none;
}

/* BIG CARD */
.offer-card{
  min-width:220px;

  background:rgba(255,255,255,.72);

  backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,.4);

  border-radius:28px;

  overflow:hidden;

  flex-shrink:0;

  transition:.35s ease;

  position:relative;

  box-shadow:
  0 10px 40px rgba(13,46,91,.08);
}

.offer-card:hover{
  transform:
  translateY(-8px);

  box-shadow:
  0 20px 60px rgba(13,46,91,.16);
}

/* LOGO */
.offer-logo{
  height:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.offer-logo img{
  width:100%;
  max-width:150px;
  max-height:70px;
  object-fit:contain;
}

/* =========================
   BENTO GRID
========================= */

#cats{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));

    grid-auto-rows:180px;

    gap:18px;

}

/* CARD */
.bento-card{

    position:relative;

    overflow:hidden;

    border-radius:15px;

    padding:24px;

    color:#fff;

    text-decoration:none;

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:0 10px 40px rgba(13,46,91,.08);

    transition:.35s ease;

}

/* HOVER */
.bento-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 20px 60px rgba(13,46,91,.16);

}

/* GLOW */
.bento-glow{

    position:absolute;

    width:240px;
    height:240px;

    background:
    rgba(255,255,255,.12);

    border-radius:999px;

    top:-120px;
    right:-120px;

}

/* CONTENT */
.bento-content{

    position:relative;

    z-index:2;

    max-width:70%;

}

/* TAG */
.bento-tag{

    display:inline-block;

    padding:8px 14px;

    border-radius:999px;

    background:
    rgba(255,255,255,.14);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.18);

    font-size:11px;

    font-weight:700;

    margin-bottom:14px;

}

/* TITLE */
.bento-content h3{

    font-size:30px;

    line-height:1.05;

    font-weight:900;

    letter-spacing:-0.04em;

    margin-bottom:10px;

}

/* TEXT */
.bento-content p{

    font-size:14px;

    line-height:1.6;

    opacity:.9;

}

/* IMAGE */
.bento-card img{

    position:absolute;

    right:10px;
    bottom:20px;

    width:125px;
    height:125px;

    object-fit:contain;

    filter:
    drop-shadow(
    0 14px 24px rgba(0,0,0,.18)
    );

    transition:.35s ease;

}

.bento-card:hover img{

    transform:
    scale(1.08);

}

/* BENTO SIZES */
.large-card{

    grid-column:span 2;
    grid-row:span 2;

}

.tall-card{

    grid-row:span 2;

}

.wide-card{

    grid-column:span 2;

}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    #cats{

        grid-template-columns:
        repeat(2,1fr);

        grid-auto-rows:150px;

    }

    .large-card,
    .wide-card{

        grid-column:span 2;
        grid-row:span 1;

    }

    .tall-card{

        grid-row:span 1;

    }

}

@media(max-width:576px){

    #cats{

        gap:14px;

        grid-auto-rows:135px;

    }

    .bento-card{

        border-radius:24px;

        padding:18px;

    }

    .bento-content h3{

        font-size:20px;

    }

    .bento-content p{

        font-size:12px;

    }

    .bento-card img{

        width:54px;
        height:54px;

    }

    .bento-tag{

        font-size:9px;

        padding:6px 10px;

        margin-bottom:10px;

    }

}
/* BUTTON */
.cashback-btn{
  width:calc(100% - 20px);

  margin:10px;

  border:none;

  background:
  linear-gradient(
  135deg,
  #0D2E5B,
  #164a8f
  );

  color:#fff;

  padding:8px 2px;

  border-radius:10px;

  font-size:12px;

  font-weight:700;

  cursor:pointer;

  transition:.3s ease;

  box-shadow:
  0 10px 25px rgba(13,46,91,.2);
}

.cashback-btn:hover{
    transform:translateY(-2px);
}

.store-card{
    opacity:0;
    transform:translateY(15px) scale(0.96);
    animation:fadeCard .35s ease forwards;
}

@keyframes fadeCard{

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}


/* MOBILE */
@media(max-width:480px){

  .offer-card{
    min-width:200px;
  }

  .offer-logo{
    height:130px;
  }

  .offer-logo img{
    max-width:130px;
  }

  .cashback-btn{
    border-radius:5px;
    font-size:10px;
    padding:8px 4px;
  }
  
  .slide-btn{
      width:30px;
      height:30px;
      font-size:15px;
  }
}

/* SECTION */
.shopping-card-section{
  width:100%;
}

/* TOP */
.shopping-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
}

/*.shopping-head h2{*/
/*  font-size:22px;*/
/*  font-weight:800;*/
/*  color:#111;*/
/*}*/

.view-all{
  text-decoration:none;
  color:#1140f5;
  font-size:14px;
  font-weight:700;
}

/* SLIDER */
.shopping-slider{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding-bottom:5px;
}

.shopping-slider::-webkit-scrollbar{
  display:none;
}

/* CARD */
.shopping-card{
  min-width:230px;

  background:
  linear-gradient(
  135deg,
  rgba(255,255,255,.8),
  rgba(255,255,255,.55)
  );

  backdrop-filter:blur(20px);

  border-radius:30px;

  padding:16px;

  flex-shrink:0;

  position:relative;

  border:1px solid rgba(255,255,255,.4);

  overflow:hidden;

  transition:.35s ease;

  box-shadow:
  0 10px 40px rgba(13,46,91,.08);
}

.shopping-card:hover{
    transform:
    translateY(-8px);

    box-shadow:
    0 20px 60px rgba(13,46,91,.16);
}

/* MINI BANK */
.mini-bank{
  width:74px;
  height:74px;

  background:rgba(255,255,255,.8);

  backdrop-filter:blur(14px);

  border-radius:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:18px;

  border:1px solid rgba(255,255,255,.5);

  box-shadow:
  0 10px 25px rgba(0,0,0,.05);
}

.mini-bank img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.mini-bank span{
  font-size:9px;
  font-weight:700;
  color:#444;
}

/* CARD IMAGE */
.right-content{
  display:flex;
  justify-content:center;
  margin-bottom:16px;
}

.right-content img{
  width:150px;
  max-width:100%;
}

/* TEXT */
.left-content h3{
  font-size:22px;
  line-height:1.3;
  color:#222;
  margin-bottom:10px;
}

.brands{
  font-size:13px;
  color:#222;
  margin-bottom:15px;
  line-height:1.5;
}

/* REWARD */
.reward-box{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:800;
  color:#222;
  margin-bottom:16px;
}

.reward-box span{
  width:36px;
  height:36px;
  background:#1140f5;
  color:#fff;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}

/* BUTTON */
.apply-btn{
  width:100%;
  border:none;
  background:
  linear-gradient(
  135deg,
  #0D2E5B,
  #164a8f
  );
  color:#fff;
  padding:8px 4px;
  border-radius:10px;

  font-size:12px;

  font-weight:700;

  cursor:pointer;

  transition:.3s ease;

  box-shadow:
  0 10px 30px rgba(13,46,91,.18);
}

.apply-btn:hover{
    transform:translateY(-2px);
}

.profileSidebar li {
    cursor:pointer;
}

.testimonial-card{
    background:rgba(255,255,255,.7);

    backdrop-filter:blur(18px);

    border-radius:24px;

    border:1px solid rgba(255,255,255,.4);

    overflow:hidden;

    position:relative;
}

.offer-card,
.shopping-card{
    animation:floatCard 4s ease-in-out infinite;
}

@keyframes floatCard{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-3px);
    }

}


/* MOBILE */
@media(max-width:480px){

  .shopping-card{
    min-width:210px;
    border-radius:18px;
    padding:12px;
  }

  .shopping-head h2{
    font-size:19px;
  }

  .right-content img{
    width:130px;
  }

  .left-content h3{
    font-size:19px;
  }

  .brands{
    font-size:12px;
  }

  .reward-box{
    font-size:14px;
  }

  .apply-btn{
    font-size:14px;
    padding:12px;
  }
}
/* =========================
   MOBILE FRIENDLY DEAL SLIDER
========================= */



/* SECTION */
.grab-section{
  width:100%;
  padding:22px 10px;
}

/* HEADING */
.grab-head{
  text-align:center;
  margin-bottom:22px;
}

.grab-head h2{
  color:#fff;
  font-size:30px;
  font-weight:900;
  letter-spacing:1px;
}

/* SLIDER */
.grab-slider{
  display:flex;
  gap:14px;

  overflow-x:auto;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;

  padding-bottom:10px;

  -webkit-overflow-scrolling:touch;

  scrollbar-width:none;
}

.grab-slider::-webkit-scrollbar{
  display:none;
}

/* CARD */
.grab-card{
  min-width:285px;
  width:285px;

  background:
  linear-gradient(
    135deg,
    #ecf8ff,
    #d7f1ff
  );

  border-radius:24px;

  padding:16px;

  position:relative;

  flex-shrink:0;

  scroll-snap-align:start;

  box-shadow:
  0 10px 30px rgba(0,0,0,.18);

  transition:.3s ease;
}

/* HOVER */
.grab-card:hover{
  transform:
  translateY(-5px);
}

/* LOGO */
.grab-logo{
  width:72px;
  height:48px;

  background:#fff;

  border-radius:12px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:14px;
}

.grab-logo img{
  width:50px;
  object-fit:contain;
}

/* PRODUCT */
.grab-product{
  width:100%;

  display:flex;
  justify-content:center;

  margin-bottom:16px;
}

.grab-product img{
  width:150px;
  max-width:100%;

  object-fit:contain;

  filter:
  drop-shadow(0 12px 18px rgba(0,0,0,.15));
}

/* DISCOUNT TAG */
.offer-tag{
  position:absolute;

  top:118px;
  right:12px;

  background:#ea1818;
  color:#fff;

  padding:7px 10px;

  border-radius:8px;

  font-size:12px;
  font-weight:800;

  box-shadow:
  0 5px 15px rgba(234,24,24,.35);
}

/* TITLE */
.grab-card h3{
  font-size:26px;
  line-height:1.15;

  color:#121212;

  margin-bottom:8px;

  font-weight:900;
}

/* SUBTEXT */
.grab-card p{
  font-size:14px;
  color:#666;

  margin-bottom:16px;
}

/* PRICE */
.grab-price{
  font-size:30px;
  font-weight:900;

  color:#111;
}

.grab-price del{
  font-size:16px;
  color:#777;

  margin-left:6px;
}

/* BUTTON */
.grab-card button{
  width:100%;

  border:none;

  background:
  linear-gradient(
    135deg,
    #1140f5,
    #0030d4
  );

  color:#fff;

  margin-top:18px;

  padding:14px;

  border-radius:14px;

  font-size:16px;
  font-weight:800;

  cursor:pointer;

  transition:.3s ease;

  box-shadow:
  0 8px 18px rgba(17,64,245,.3);
}

.grab-card button:active{
  transform:scale(.97);
}

/* TABLET */
@media(min-width:768px){
    


  .grab-section{
    padding:35px 20px;
  }

  .grab-head h2{
    font-size:48px;
  }

  .grab-slider{
    gap:20px;
  }

  .grab-card{
    min-width:360px;
    width:360px;

    border-radius:30px;

    padding:22px;
  }

  .grab-logo{
    width:90px;
    height:58px;
  }

  .grab-logo img{
    width:65px;
  }

  .grab-product img{
    width:220px;
  }

  .offer-tag{
    top:165px;
    right:18px;

    font-size:16px;

    padding:10px 12px;

    border-radius:10px;
  }

  .grab-card h3{
    font-size:38px;
  }

  .grab-card p{
    font-size:22px;
  }

  .grab-price{
    font-size:40px;
  }

  .grab-price del{
    font-size:24px;
  }

  .grab-card button{
    padding:16px;
    font-size:18px;
    border-radius:16px;
  }
}
.text-muted{ color:var(--muted); }
.border-base{ border-color:var(--border); }
.btn-primary{ background:var(--brand-blue); color:#fff; }
.btn-primary:hover{ background:var(--brand-blue-dark); }
.btn-accent{ background:var(--brand-orange); color:#fff; }
.btn-accent:hover{ filter:brightness(0.95); }
.btn-success{ background:var(--brand-green); color:#fff; }
.text-brand-blue{ color:var(--brand-blue); }
.text-brand-green{ color:var(--brand-green); }
.text-brand-orange{ color:var(--brand-orange); }
.bg-brand-blue{ background:var(--brand-blue); }
.bg-brand-green{ background:var(--brand-green); }
.bg-brand-orange{ background:var(--brand-orange); }
.bg-hero{ background: linear-gradient(135deg,#1e5fb8 0%, #2d7be0 60%, #5cb334 130%); }
.shadow-card{ box-shadow: 0 4px 18px -8px rgba(30,95,184,.18); }
.no-scrollbar::-webkit-scrollbar{display:none}
.no-scrollbar{scrollbar-width:none}
.cat-pill{ background:var(--card); border:1px solid var(--border); }
.coupon-card{ background:var(--card); border:1px solid var(--border); border-radius:14px; transition:transform .15s ease, box-shadow .15s ease; }
.coupon-card:hover{ transform:translateY(-2px); box-shadow:0 10px 25px -10px rgba(30,95,184,.25); }
.skeleton{ background:linear-gradient(90deg,#eee,#f5f5f5,#eee); background-size:200% 100%; animation: sk 1.2s infinite; }
@keyframes sk{ 0%{background-position:200% 0} 100%{background-position:-200% 0} }
input,select,textarea{ background:var(--card); color:var(--text); border:1px solid var(--border); }
input:focus,select:focus,textarea:focus{ outline:2px solid var(--brand-blue); outline-offset:1px; }
.tab-active{ color:var(--brand-blue); }
.tab-active svg{ stroke:var(--brand-blue); }
@media (min-width: 768px){ .mobile-only{ display:none !important; } }
@media (max-width: 767px){ 
    .desktop-only{ display:none !important; } 
    body{ padding-bottom:42px; } 
    .logoImg{
     width:calc(220px - 20px);   
    }

.logoImg img{
    width:100%;
    height:100%;
}    

.mobileNav{
    justify-content:space-between;
}
}
.fade-in{ animation: fi .35s ease both; }
@keyframes fi{ from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:none} }
