:root{
	--font-main: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial;
  --bg1:#f6fbff;
  --bg2:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --card:rgba(255,255,255,.88);
  --border:rgba(17,24,39,.10);
  --shadow:0 18px 60px rgba(17,24,39,.12);
  --radius:20px;
  --title-color: #103741;
  --primary-color:#e772a8;
  --secondary-color:#3264c3;
}

body{
  font-family:var(--font-main);
  color:var(--text);
  background: radial-gradient(900px 500px at 20% 10%, #c9f0ff 0%, transparent 60%),
              radial-gradient(900px 500px at 85% 20%, #ffe9b6 0%, transparent 60%),
              linear-gradient(180deg,var(--bg1),var(--bg2));
  min-height:100vh;
}
p {
    font-family: var(--font-main);
    margin: 0 0 18px 0;
    color: var(--body-color);
    line-height: 1.75;
}
a {
    color: var(--secondary-color);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
/* =========================
   2-Row Header (Topbar + Navbar)
========================= */

.jj-header{ z-index: 1030; background: #fff; }
.menu-top{
	padding:16px 0px;
}
.menu-top .header-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 260px;
    border: 1px solid #d6dfe1;
    border-radius: 25px;
    padding-right: 20px;
}
.header-form .form-control, .header-form .form-select {
    height: 50px;
    border: none;
    font-size: 14px;
    padding: 0 20px;
    border-radius: 0;
    color: #103741;
}
.header-form .form-control {
    background-color: transparent;
}
.header-form .form-control:focus{
	box-shadow:none;
	outline:none;
}

.header-button {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.call-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    position: relative;
    padding-right: 24px;
	width:100%;
}

.call-btn .box-icon {
    color: #fff;
    font-size: 26px;
    background: var(--secondary-color);
    height: 50px;
    width: 50px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    border: 3px solid #fff;
    position: relative;
}
.call-btn .box-icon:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    inset: -4px;
}

.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.call-btn .box-subtitle {
    color: var(--title-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
    opacity: 0.8;
}
.box-title {
    font-size: 24px;
    line-height: 1.333;
    margin-top: -0.28em;
}
.call-btn .box-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--title-color);
}
.box-title a {
    color: inherit;
}
.simple-icon {
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 16px;
    position: relative;
    color: #103741;
}

/* Top thin info bar */
.jj-topbar{
  background: var(--primary-color); /* very light */
}

.jj-top-text{
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 68vw;
}

.jj-top-link{
  font-size: 12px;
  color: #fff;
  text-decoration: none;
}
.jj-top-link:hover{ color: var(--secondary-color); text-decoration: underline; }

.jj-sep{
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.18);
}

.jj-badge{
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--secondary-color);
  color: #fff;
}

/* Main navbar row */
.jj-navbar{
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 12px rgba(0, 80, 191, 3%);
}

.jj-logo{ height: 44px; width:auto; display:block; }

.jj-brand{ color:#111827; font-size:36px; letter-spacing:.2px; }
.jj-tagline{ color: rgba(17,24,39,.60); font-size: 12px; margin-top: 12px; }

/* Links */
.jj-navbar .nav-link{
  color: rgba(17,24,39,.78);
  font-weight: 600;
  padding: .45rem .75rem;
  border-radius: 999px;
}
.jj-navbar .nav-link:hover{
  color: rgba(17,24,39,1);
  background: rgba(17,24,39,.06);
}
.jj-navbar .nav-link.active{
  color: #111827;
  background: rgba(17,24,39,.10);
}

/* CTA */
.jj-cta{
  border-radius: 999px;
  padding: .45rem .90rem;
  font-weight: 700;
  border: 1px solid rgba(17,24,39,.14);
  background: #111827;
  color: #fff;
}
.jj-cta:hover{
  background: #0b1220;
  color: #fff;
}

/* Toggler */
.jj-toggler{
  border: 1px solid rgba(17,24,39,.18) !important;
}
/* Ensure toggler icon visible on light navbar */
.jj-navbar .navbar-toggler-icon{
  background-image: var(--bs-navbar-toggler-icon-bg);
}


/* =========================
   Hero Section (Bootstrap)
========================= */
/* Prevent hero from feeling glued to sticky header */
.jj-hero{
  padding-top: 8px;
}

.jj-hero{
  background:
    radial-gradient(900px 420px at 10% 10%, rgba(56,189,248,.18), transparent 55%),
    radial-gradient(900px 420px at 90% 20%, rgba(251,191,36,.20), transparent 55%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  border-bottom: 1px solid rgba(17,24,39,.06);
}

.py-lg-6{ padding-top: 4.25rem !important; padding-bottom: 4.25rem !important; }

.jj-hero-badge{ display:flex; gap:8px; flex-wrap:wrap; }
.jj-pill{
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17,24,39,.08);
  color: rgba(17,24,39,.88);
  border: 1px solid rgba(17,24,39,.10);
}
.jj-pill.soft{
  background: rgba(255,255,255,.85);
}

.jj-hero-title{
  font-weight: 800;
  letter-spacing: -0.6px;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.06;
  color: #0f172a;
}

.jj-hero-sub{
  font-size: 16px;
  color: rgba(15,23,42,.72);
  max-width: 560px;
}

.jj-btn-round{ border-radius: 999px; font-weight: 700; }

.jj-hero-tags{ display:flex; gap:10px; flex-wrap:wrap; }
.jj-tag{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(17,24,39,.10);
  color: rgba(15,23,42,.75);
}

.jj-hero-proof{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  border-top: 1px solid rgba(17,24,39,.08);
  padding-top: 14px;
  max-width: 560px;
}
.jj-proof-item{ min-width: 140px; }
.jj-proof-num{
  font-weight: 900;
  font-size: 18px;
  color: #0f172a;
}
.jj-proof-label{
  font-size: 12px;
  color: rgba(15,23,42,.60);
  margin-top: 2px;
}

/* Right card */
.jj-hero-card{
  border-radius: 24px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 60px rgba(15,23,42,.12);
  backdrop-filter: blur(10px);
}
.jj-hero-card-inner{ padding: 18px; }

.jj-mini{
  display:flex; gap:10px; align-items:center;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.9);
  border-radius: 18px;
  padding: 12px;
}
.jj-mini-icon{
  width: 12px; height: 12px; border-radius: 999px;
  background: rgba(17,24,39,.85);
}
.jj-mini-title{ font-weight: 800; font-size: 13px; color:#0f172a; }
.jj-mini-sub{ font-size: 12px; color: rgba(15,23,42,.65); }

.jj-hero-visual{
  position: relative;
  height: 250px;
  border-radius: 22px;
  margin-top: 14px;
  border: 1px solid rgba(17,24,39,.10);
  overflow:hidden;
  background: linear-gradient(180deg, rgba(56,189,248,.15), rgba(251,191,36,.12));
}

.jj-blob{
  position:absolute;
  filter: blur(20px);
  opacity: .75;
  border-radius: 999px;
}
.jj-blob.b1{ width:180px;height:180px; left:-40px; top:-40px; background: rgba(56,189,248,.55); }
.jj-blob.b2{ width:220px;height:220px; right:-60px; top:40px; background: rgba(251,191,36,.55); }
.jj-blob.b3{ width:200px;height:200px; left:40px; bottom:-70px; background: rgba(34,197,94,.35); }

.jj-visual-center{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
}
.jj-visual-logo{ height: 74px; width:auto; }
.jj-visual-text{
  font-weight: 900;
  letter-spacing: .3px;
  color: rgba(15,23,42,.86);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17,24,39,.10);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

/* Social cards */
.jj-social-card{
  display:block;
  text-decoration:none;
  color:#0f172a;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.90);
  border-radius: 16px;
  padding: 12px 12px;
  font-weight: 800;
  font-size: 13px;
}
.jj-social-card:hover{
  border-color: rgba(17,24,39,.18);
  background: #fff;
}
.jj-social-handle{
  display:block;
  font-weight: 600;
  color: rgba(15,23,42,.60);
  font-size: 12px;
  margin-top: 2px;
}

/* Feature cards */
.jj-feature{
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.92);
}
.jj-feature-title{ font-weight: 900; color:#0f172a; }
.jj-feature-sub{ color: rgba(15,23,42,.65); font-size: 13px; margin-top: 6px; }


/* =========================
   Trending Products Section
========================= */

.jj-trending{
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border-top: 1px solid var(--border);
}

.jj-section-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(239,68,68,.10);
  color: rgb(185,28,28);
}

.jj-section-title{
  font-weight:900;
  letter-spacing:-0.4px;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--text);
}

.jj-section-sub{
  margin:6px 0 0;
  font-size:14px;
  color: var(--muted);
}

.jj-view-all{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  color: var(--text);
}
.jj-view-all:hover{
  text-decoration:underline;
}

/* Product Card */
.jj-product-card{
  height:100%;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.jj-product-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(17,24,39,.16);
}

/* Thumbnail */
.jj-product-thumb{
  position:relative;
  background: linear-gradient(180deg,#eef2ff,#f8fafc);
  padding:14px;
}

.jj-product-badge{
  position:absolute;
  top:12px;
  left:12px;
  display:inline-flex;
  align-items:center;
  gap:5px;
  font-size:11px;
  font-weight:800;
  padding:4px 8px;
  border-radius:999px;
  background: rgba(251,191,36,.90);
  color:#92400e;
}

.jj-product-img{
  height:130px;
  border-radius:14px;
  border:1px dashed rgba(17,24,39,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  color: rgba(17,24,39,.35);
  background:#fff;
}

/* Body */
.jj-product-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.jj-product-title{
  font-size:14px;
  font-weight:800;
  line-height:1.3;
  margin:0;
  color: var(--text);
}

/* Meta */
.jj-product-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  font-size:12px;
  color: var(--muted);
}
.jj-product-meta i{
  margin-right:4px;
}

/* Footer */
.jj-product-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:auto;
}

.jj-price{
  font-weight:900;
  font-size:14px;
  color: var(--text);
}

.jj-action-btn{
  border:1px solid var(--border);
  background:#fff;
  border-radius:999px;
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: background .2s ease, transform .2s ease;
}
.jj-action-btn:hover{
  background:#f8fafc;
  transform: scale(1.05);
}


@media (max-width: 576px){
  /* hides socials only */
  .jj-top-right a:nth-child(n+4){ display:none; }

  /* hero visual height */
  .jj-hero-visual{ height: 220px; }

  /* topbar text should not overflow too much */
  .jj-top-text{ max-width: 56vw; }
}

