:root{
  --accent:#0f766e;
  --accent-2:#14b8a6;
  --muted:#6b7280;
  --bg:#f0faf9;
  --page-max:1200px;
  --card-radius:14px;
  --card-shadow: 0 18px 40px rgba(2,6,23,0.06);
  --ease: cubic-bezier(.2,.9,.3,1);
}

*{box-sizing:border-box}
html,body{
  height:100%;
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  background:var(--bg);
  color:#071617;
}
.wrap{max-width:var(--page-max);margin:0 auto;padding:0 20px}

/* =============== HERO (full-width background) =============== */

.catalog-hero{
  width:100%;
  margin:0 0 18px;
  padding:26px 0 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(20,184,166,0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(15,118,110,0.12), transparent 55%),
    #e5f7f4;
  box-shadow:0 18px 44px rgba(2,6,23,0.08);
  border-bottom:1px solid rgba(11,18,32,0.04);
}

.catalog-hero-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  padding:6px 0;
}

.hero-left{
  position:relative;
  z-index:1;
  flex:1 1 auto;
  max-width:640px;
  min-width:0;
}

.catalog-hero h1{
  margin:2px 0 10px;
  font-size:2.1rem;
  color:#073737;
  letter-spacing:-0.02em;
}

.hero-kicker{
  margin:0 0 6px;
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:0.18em;
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
}
.hero-kicker::before{
  content:"";
  width:26px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  box-shadow:0 6px 16px rgba(15,119,110,0.18);
}

.muted{color:var(--muted);margin-top:6px}
.hero-subtitle{
  max-width:580px;
  font-size:0.98rem;
  line-height:1.5;
}

/* info pills under text */
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.hero-pill{
  background:rgba(255,255,255,0.96);
  border-radius:999px;
  padding:10px 16px;
  box-shadow:0 10px 26px rgba(15,119,110,0.12);
  border:1px solid rgba(15,119,110,0.08);
  display:flex;
  flex-direction:column;
}
.pill-label{
  font-size:0.86rem;
  font-weight:700;
  color:#053131;
}
.pill-caption{
  font-size:0.8rem;
  color:var(--muted);
}

/* right-side hero card */
.hero-actions{
  flex:0 0 auto;
  align-self:stretch;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.hero-actions-card{
  background:#ffffff;
  border-radius:22px;
  padding:18px 18px 16px;
  box-shadow:0 18px 40px rgba(2,6,23,0.12);
  min-width:260px;
  max-width:320px;
}

.hero-actions-head{
  margin-bottom:12px;
}
.jump-title{
  margin:0 0 4px;
  font-size:0.88rem;
  font-weight:800;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#062b2a;
}
.jump-sub{
  margin:0;
  font-size:0.86rem;
}

/* right-side category chips */
.category-filter{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  padding:6px;
  border-radius:999px;
  background:rgba(255,255,255,0.9);
  box-shadow:0 12px 30px rgba(15,119,110,0.12);
  border:1px solid rgba(11,18,32,0.04);

  /* alignment fix */
  justify-content:center;
  align-items:center;
}

.category-filter .pill{
  background:transparent;
  border:1px solid rgba(11,18,32,0.06);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  font-size:0.9rem;
}
.category-filter .pill.active{
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  color:#fff;
  border-color:transparent;
  box-shadow:0 12px 30px rgba(15,119,110,0.14);
}

/* =============== CATALOG GRID =============== */

.catalog-wrap{
  padding:28px 0 80px;
  display:flex;
  flex-direction:column;
  gap:46px
}
.section{padding:8px 0}
.section-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin-bottom:16px;
  flex-wrap:wrap
}
.section-header h2{margin:0;font-size:1.35rem;color:#062b2a}
.section-header p{margin:6px 0 0;color:var(--muted)}

.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  align-items:start
}
.card{
  background:#fff;
  border-radius:var(--card-radius);
  overflow:hidden;
  box-shadow:var(--card-shadow);
  display:flex;
  flex-direction:column;
  transition:transform .22s var(--ease),box-shadow .22s var(--ease);
  cursor:pointer;
  min-height:300px
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 70px rgba(2,6,23,0.12)
}
.card-media{
  position:relative;
  display:block;
  height:180px;
  overflow:hidden;
  background:linear-gradient(180deg,#fff,#f7fffb)
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* no zoom on hover – keep image clear */
.card:hover .card-media img{
  transform:none;
}

.material-badge{
  position:absolute;
  right:10px;
  top:10px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(15,119,110,0.08);
  font-size:0.85rem
}

.card-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1
}
.card-body h4{margin:0;font-size:1.02rem;color:#073737}
.card-body p{margin:0;color:var(--muted);font-size:0.95rem}

/* see-all special card (if used) */
.see-all{display:flex;flex-direction:column;justify-content:space-between}
.view-all-btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  color:#fff;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 10px 28px rgba(15,119,110,0.08)
}

/* Quick view modal */
.cv-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background: rgba(2,6,23,0.45);
  z-index:1200;
  padding:20px
}
.cv-modal[aria-hidden="false"]{display:flex}
.cv-inner{
  background:#fff;
  border-radius:12px;
  padding:18px;
  width:100%;
  max-width:980px;
  box-shadow:0 30px 80px rgba(2,6,23,0.3);
  position:relative
}
.cv-close{
  position:absolute;
  right:12px;
  top:10px;
  background:transparent;
  border:none;
  font-size:18px;
  cursor:pointer
}
.cv-grid{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:18px;
  align-items:start
}
.cv-media img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:10px
}
.cv-body h3{margin:0 0 6px}
.cv-body p{margin:0;color:var(--muted)}
.cv-features{list-style:none;padding:0;margin:12px 0 0}
.cv-features li{margin:6px 0;color:#143836;font-weight:600}

/* card hover overlay effect – disabled so image stays clear */
.card .overlay{
  display:none;
}

/* responsive */
@media (max-width:1100px){
  .catalog-hero-inner{
    gap:24px;
  }
  .hero-actions{
    align-self:flex-start;
  }
  .cv-grid{grid-template-columns:1fr}
  .cv-media img{height:240px}
  .gallery{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:760px){
  .catalog-hero-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .hero-actions{
    width:100%;
    justify-content:flex-start;
  }
  .hero-actions-card{
    width:100%;
    max-width:none;
  }
  .category-filter{
    width:100%;
    justify-content:flex-start; /* mobile: align left again */
    padding:6px 8px;
  }
  .gallery{grid-template-columns:repeat(1,1fr)}
  .card-media{height:220px}
}

/* highlight effect for scroll-in */
.highlight{
  box-shadow: 0 0 0 8px rgba(20,184,166,0.06) inset,
              0 18px 50px rgba(15,119,110,0.06);
  transition: box-shadow .6s ease;
}

/* ---------- Sticky social logos ---------- */
.sticky-social{
  position:fixed;
  right:24px;
  bottom:120px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:1400;
}

.sticky-social .sticky-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  text-decoration:none;
  box-shadow:0 12px 26px rgba(0,0,0,0.35);
  border:2px solid #ffffff;
  transition:transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

/* platform colours */
.sticky-social .sticky-wa{background:#25D366;}
.sticky-social .sticky-ig{background:#E1306C;}
.sticky-social .sticky-fb{ background:#1877F2; }  /* Facebook */

.sticky-social .sticky-icon:hover{
  transform:translateY(-3px) scale(1.03);
  opacity:0.96;
  box-shadow:0 16px 30px rgba(0,0,0,0.4);
}

@media (max-width:640px){
  .sticky-social{
    right:16px;
    bottom:90px;
  }
}
