* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;    
  scroll-behavior: smooth;          
}


body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8fafc;   
  color: #0f172a;
  margin: 0;
  
}


/* BOOTSTRAP NAVBAR FIX (sticky on all screens) */
.ojahub-nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.brand-logo{
  height: 56px;
  width: auto;
  display: block;
}





/* logo area */
.logo {
  display: flex;
  align-items: center;
  gap: 8px; 
}
.brand-logo{
  height: 56px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-slogan {
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-top: 2px;
}

.logo-img {
  height: 150px;                 
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  gap: 32px;                    
}

.nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #1e40af;
}


/* RWD */



/* ---------- HERO ---------- */

.hero {
    position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;

  padding: 56px 80px 64px;
  min-height: 420px;

  /* image background */
  background-image: url("Images/Hero\ background\ 3.PNG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}



.navbar .container-fluid {
  padding-left: 14px !important;
  padding-right: 14px !important;
}




.hero::before {
  content: "";
  position: absolute;
  inset: 0;  
  
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.80),
    rgba(0, 0, 0, 0.35)
  );

  z-index: 0;
}

.hero-text {
  flex: 0 0 580px;
  max-width: 580px;
  position: relative;
  z-index: 1;
}

.tagline {
  color: #ff5e04;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;

  
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-sub {
  font-size: 20px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  font-weight: 900;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-small {
  font-size: 13px;
  color:#cbd5f5;
  font-weight: 900;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* buttons reused across page */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}

.primary-btn {
  background: #1e40af;
  color: #ffffff;
}

.primary-btn:hover {
  background: #1d4ed8;
}

.secondary-btn {
  background: #ffffff;
  color: #1e40af;
  border-color: #1e40af;
}

.secondary-btn:hover {
  background: #eff6ff;
}

/* hero card on the right */
.hero-card {
  flex: 0 0 340px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.hero-card h3 {
  font-size: 15px;
  margin-bottom: 12px;
  color: #0f172a;
}

.hero-card ul {
  list-style: none;
  margin-bottom: 10px;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  margin-bottom: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot.food    { background: #f97316; }
.dot.phone   { background: #22c55e; }
.dot.fashion { background: #6366f1; }

.hero-note {
  font-size: 12px;
  color: #6b7280;
}


/* WHY USE OJAHUB */

.why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card{
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  min-height: 120px;
}

.why-card h3{
  font-size: 15px;
  margin-bottom: 6px;
  color: #0f172a;
}

.why-card p{
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}




/* HOW IT WORKS */


.section {
  padding: 40px 80px;           
  background: #f8fafc;
}

.section-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0f172a;
}

/* ---------- CATEGORIES ---------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);   /* 4 cards on PC */
  gap: 16px;
}

.category-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  min-height: 140px;
}

.category-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.category-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.category-card p {
  font-size: 13px;
  color: #4b5563;
}




/* Vendore spotlight */
.section-subtitle{
  font-size: 14px;
  color: #6b7280;
  margin-top: -8px;
  margin-bottom: 16px;
}

.spotlight-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.spotlight-card{
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.spotlight-img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin-bottom: 10px;
}

.spotlight-badge{
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #1e40af;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.spotlight-card h3{
  font-size: 16px;
  margin-bottom: 4px;
  color: #0f172a;
}

.spotlight-meta{
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

.spotlight-desc{
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Responsive */
@media screen and (max-width: 768px){
  .spotlight-grid{
    grid-template-columns: 1fr;
  }

  .spotlight-img{
    height: 180px;
  }
}



/* SAMPLE VENDORS */

/* =========================
FEATURED VENDORS (GROUPED) CSS
Paste into your styles.css
========================= */

.section {
  padding: 40px 80px;
  background: #f8fafc;
}

.section-title {
  font-size: 24px;
  margin-bottom: 8px;
  color: #0f172a;
}

.section-subtitle {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 18px;
}

.vendor-group-title {
  font-size: 18px;
  margin: 20px 0 12px;
  color: #0f172a;
  font-weight: 700;
  border-left: 4px solid #1e40af;
  padding-left: 10px;
}

.vendor-group-title:first-of-type {
  margin-top: 6px;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 10px;
}

.vendor-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  min-height: 180px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.vendor-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
  background: #eef2f7;
}

.vendor-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #0f172a;
}

.vendor-cat {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

.vendor-loc {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.vendor-desc {
  font-size: 13px;
  color: #4b5563;
  margin: 10px 0 14px;
  line-height: 1.5;
}


.vendor-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 10px;
}

.vendor-chip{
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.vendor-chip.price{
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* Vendor tags */
.vendor-tag {
  display: inline-block;
  margin: 10px 0 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
}

/* Green badge for verified */
.vendor-tag.verified {
  background: #e8f7ee;
  color: #15803d;
  border: 1px solid #b7ebc6;
}

/* Yellow badge for pending (optional but nice) */
.vendor-tag.pending {
  background: #fff8db;
  color: #a16207;
  border: 1px solid #f6e7a8;
}

.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  background: #1e40af;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: 0.2s ease;
}

.small-btn:hover {
  background: #1d4ed8;
  color: #ffffff;
}

.small-btn:focus {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.support-inline{
  margin-top: 14px;
  font-size: 13px;
  color: #4b5563;
}

.support-inline a{
  color: #1e40af;
  font-weight: 600;
  text-decoration: none;
}

.support-inline a:hover{
  text-decoration: underline;
}

/* -------- Mobile -------- */
@media screen and (max-width: 480px) {
  .section {
    padding: 26px 14px;
  }

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

  .vendor-group-title {
    font-size: 16px;
  }

  .vendor-img {
    height: 160px;
  }
  
}

/* -------- Tablet -------- */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .section {
    padding: 32px 24px;
  }

  .vendor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------- Medium screens -------- */
@media screen and (min-width: 769px) and (max-width: 1279px) {
  .section {
    padding: 40px 40px;
  }

  .vendor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}




.section-subtitle{
  font-size: 14px;
  color: #6b7280;
  margin: -8px 0 18px;
}

.vendor-group-title{
  font-size: 18px;
  color: #0f172a;
  margin: 22px 0 12px;
}

.vendor-tag{
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
}

.vendor-tag.verified{
  color: #16a34a; /* green */
}

/* optional if you still use pending somewhere */
.vendor-tag.pending{
  color: #f59e0b; /* amber */
}












/* TRUST SECTION */


/* ---------- HOW IT WORKS ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 cards on PC */
  gap: 16px;
}

.step-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  min-height: 150px;
}

.step-number {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e40af;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #0f172a;
}

.step-card p {
  font-size: 13px;
  color: #4b5563;
}







/* ---------- BUYING SAFELY ---------- */
.safety-section{
  background: #f8fafc;
}

.safety-intro{
  font-size: 14px;
  color: #4b5563;
  max-width: 760px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.safety-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.safety-grid{
  grid-template-columns: 1fr;}

.safety-card{
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  min-height: 140px;
}

.safety-icon{
  font-size: 22px;
  display: inline-block;
  margin-bottom: 8px;
}

.safety-card h3{
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 6px;
}

.safety-card p{
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

.safety-note{
  margin-top: 14px;
  font-size: 12px;
  color: #6b7280;
}




/* ---------- FEEDBACK SECTION ---------- */
.feedback{
  margin: 32px 80px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
}

.feedback h2{
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 10px;
}

.feedback > p{
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 760px;
}

.feedback-questions{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.feedback-q{
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
  color: #1f2937;
  font-weight: 500;
}

.feedback-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.feedback-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.form-btn{
  background: #1e40af;
  color: #ffffff;
}

.form-btn:hover{
  background: #1d4ed8;
  color: #ffffff;
}

.whatsapp-btn{
  background: #ecfdf5;
  color: #166534;
  border-color: #bbf7d0;
}

.whatsapp-btn:hover{
  background: #dcfce7;
  color: #14532d;
}

.feedback-note{
  margin-top: 12px;
  font-size: 12px;
  color: #6b7280;
}

.feedback-help-line{
  margin-top: 10px;
  font-size: 13px;
  color: #374151;
}

.feedback-help-line a{
  color: #1e40af;
  font-weight: 600;
  text-decoration: none;
}

.feedback-help-line a:hover{
  text-decoration: underline;
}






.trust-disclaimer {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #1e3a8a;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
}

/* -------- Feedback section responsive -------- */
@media screen and (max-width: 480px) {
  


.feedback{
  margin: 28px 24px;
}


.safety-grid{
  grid-template-columns: repeat(2, 1fr);}

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

.feedback-actions{
  flex-direction: column;
}

.feedback-btn{
  width: 100%;

}


}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .feedback {
    padding: 32px 24px;
  }
}



@media screen and (min-width: 769px) and (max-width: 1279px) {
  .feedback {
    padding: 40px 40px;
  }
}





/* ---------- VENDOR FORM ---------- */

.form-intro {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 16px;
  max-width: 520px;
}

.vendor-form {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  max-width: 720px;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.form-group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 4px;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 13px;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 1px #bfdbfe;
}

.form-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 10px;
}

.apply-btn{
  display: inline-block;
  background: #1d4ed8; /* blue */
  color: #ffffff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-top: 12px;
  box-shadow: 0 10px 20px rgba(29, 78, 216, 0.25);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.apply-btn:hover{
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(29, 78, 216, 0.35);
}

.apply-btn:active{
  transform: translateY(0);
}

.apply-btn:focus{
  outline: 3px solid rgba(29, 78, 216, 0.35);
  outline-offset: 3px;
}

/* Optional: make it full width on phone */
@media (max-width: 480px){
  .apply-btn{
    width: 100%;
    text-align: center;
  }
}






/* ---------- FOOTER ---------- */

.footer {
  background: #0b1120;
  color: #e5e7eb;
  padding: 30px 80px 20px;
  margin-top: 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-brand {
  flex: 0 0 360px;
  max-width: 360px;
}

.footer-logo-img{
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 12px;

}



.footer-brand p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}



.footer-brand p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}

.footer-col {
  flex: 0 0 160px;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 8px;
  color: #f9fafb;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 4px;
}

.footer-col a {
  text-decoration: none;
  font-size: 13px;
  color: #9ca3af;
}

.footer-col a:hover {
  color: #e5e7eb;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 10px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #6b7280;
}


/* -------- 0 - 480px -------- */
@media screen and (max-width: 480px) {

  html, body { overflow-x: hidden; }
  .brand-logo{ height: 40px; }
  .ojahub-nav .navbar-brand{ padding-top: 6px; padding-bottom: 6px; }

  .navbar{
    padding: 0px 14px;
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
  }
  .brand-logo{
    height: 40px;
  }
  .nav-slogan{
    display: none;
  }

  .logo-img{
    height: 38px;
    width: auto;

  }

  .nav-links{
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
  }

  .hero{
    flex-direction: column;
    padding: 40px 14px 48px;
    gap: 18px;
    min-height: auto;
  }

  .hero-text{
    flex: 1 1 auto;
    max-width: 100%;
  }

  .hero-text h1{ font-size: 28px; }
  .hero-sub{ font-size: 14px; }

  .hero-buttons{
    flex-direction: column;
    align-items: stretch;
  }

  .btn{
    width: 100%;
    text-align: center;
  }

  .hero-card{
    width: 100%;
    max-width: 100%;
    position: static;
  }

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


  .section{ padding: 26px 14px; }

  .category-grid,
  .vendor-grid,
  .steps{
    grid-template-columns: 1fr;
  }

  .vendor-form{
    max-width: 100%;
    padding: 14px;
  }

  .form-row{ flex-direction: column; }

  .footer{ padding: 26px 14px 18px; }

  .footer-top{ flex-direction: column; }
}



/* -------- 481 - 768px -------- */
@media screen and (min-width: 481px) and (max-width: 768px) {

  html, body { overflow-x: hidden; }
  .brand-logo{ height: 46px; }

  /* NAV */
  .navbar{
    padding: 12px 24px;
    height: auto;
  }
  .brand-logo{
    height: 46px;
  }

  .logo-img{
    height: 44px;
    width: auto;
  }

  .nav-links{
    gap: 18px;
    font-size: 13px;
  }

  /* HERO */
  .hero{
    flex-direction: column;
    padding: 52px 24px 56px;
    gap: 20px;
    min-height: auto;
  }

  .hero-text{
    max-width: 100%;
    flex: 1 1 auto;
  }

  .hero-text h1{
    font-size: 32px;
  }

  .hero-sub{
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-buttons{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .btn{
    width: auto;
  }

  .hero-card{
    width: 100%;
    max-width: 520px;  
    position: static;
  }


  .why-grid{ grid-template-columns: repeat(2, 1fr); }

  /* SECTIONS */
  .section{
    padding: 32px 24px;
  }

  /* GRIDS */
  .category-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .vendor-grid{
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* FORM */
  .vendor-form{
    max-width: 100%;
  }

  .form-row{
    flex-direction: column;
  }

  /* FOOTER */
  .footer{
    padding: 28px 24px 18px;
  }

  .footer-top{
    flex-direction: column;
    gap: 18px;
  }

  .footer-brand{
    max-width: 520px;
  }
}


/* -------- 769 - 1279px (laptops / medium screens) -------- */
@media screen and (min-width: 769px) and (max-width: 1279px) {

  /* NAV */
  .navbar{
    padding: 0 40px;
  }

  .logo-img{
    height: 56px;
  }

  /* HERO */
  .hero{
    padding: 56px 40px 64px;
    gap: 28px;
  }

  .hero-text{
    flex: 1;
    max-width: 620px;
  }

  .hero-text h1{
    font-size: 38px;
  }

  .hero-sub{
    font-size: 18px;
  }

  .hero-card{
    flex: 0 0 320px;
    max-width: 320px;
  }

  /* .why-grid{ grid-template-columns: repeat(2, 1fr); } */
  
  /* SECTIONS */
  .section{
    padding: 40px 40px;
  }

  /* GRIDS */
  .category-grid{
    grid-template-columns: repeat(4, 1fr);
  }

  .vendor-grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .steps{
    grid-template-columns: repeat(3, 1fr);
  }

  /* FOOTER */
  .footer{
    padding: 30px 40px 20px;
  }


  .footer-disclaimer {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
  margin-top: 10px;
}
}




/* Make category cards clickable (no ugly underline) */
.category-link{
  display:block;
  color: inherit;
  text-decoration: none;
}
.category-link:hover{
  transform: translateY(-2px);
  transition: .15s ease;
}

/* Featured section layout */
.section-head-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.featured-grid{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* keep it nice on mobile */
@media (max-width: 992px){
  .featured-grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px){
  .featured-grid{
    grid-template-columns: 1fr;
  }
}