/* ---------- Base ---------- */
:root{
  --bgA:#f6f8ff;
  --bgB:#f8fbff;

  --text:#0b1220;
  --muted: rgba(11,18,32,.72);

  --card: rgba(255,255,255,.72);
  --card2: rgba(255,255,255,.92);
  --line: rgba(15,23,42,.12);

  --shadow: 0 22px 65px rgba(15,23,42,.14);
  --shadow2: 0 10px 24px rgba(15,23,42,.10);

  --radius: 26px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(71, 122, 255, .22), transparent 55%),
    radial-gradient(820px 460px at 86% 10%, rgba(255, 161, 74, .20), transparent 58%),
    radial-gradient(700px 420px at 55% 95%, rgba(18, 214, 170, .14), transparent 62%),
    linear-gradient(180deg, var(--bgA), var(--bgB));
}

/* ---------- Layout ---------- */
.wrap{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 52px 16px;
}

/* ---------- Card ---------- */
.card{
  position: relative;
  width: min(920px, 94vw);
  border-radius: var(--radius);
  padding: 30px 28px 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card2), var(--card));
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* soft accent glow like “product hero” */
.card__glow{
  position:absolute;
  inset:-25%;
  background:
    radial-gradient(520px 300px at 20% 12%, rgba(71, 122, 255, .24), transparent 60%),
    radial-gradient(520px 300px at 72% 16%, rgba(255, 161, 74, .22), transparent 62%),
    radial-gradient(520px 340px at 50% 85%, rgba(18, 214, 170, .14), transparent 65%);
  filter: blur(10px);
  opacity: .9;
  pointer-events:none;
}

.card__top{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  margin-bottom: 18px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.70);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 18px;
}

.divider{
  position: relative;
  height: 1px;
  background: rgba(15,23,42,.12);
  margin: 0 0 22px;
}

.card__content{
  position: relative;
  padding-top: 2px;
}

.title{
  margin: 0 0 12px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.12;
  letter-spacing: .2px;
  font-weight: 950;
  /* crisp “headline” */
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}

.subtitle{
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Chips ---------- */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.65);
  color: rgba(11,18,32,.82);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
}

/* little dot accent on chips */
.chip::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 10px;
  background: rgba(71, 122, 255, .95);
  box-shadow: 0 0 0 4px rgba(71, 122, 255, .15);
}

/* make chips feel “alive” on hover */
.chip:hover{
  transform: translateY(-1px);
  transition: transform .15s ease;
}

/* ---------- Button (Primary) ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.14);
  text-decoration:none;
  font-weight: 950;
  font-size: 18px;
  width: fit-content;

  /* gradient CTA that pops */
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(71,122,255,1), rgba(129,75,255,1));
  box-shadow:
    0 16px 34px rgba(71,122,255,.25),
    0 10px 22px rgba(15,23,42,.10);
  transition: transform .15s ease, filter .15s ease;
}

/* subtle “arrow” */
.btn::after{
  content:"→";
  font-weight: 900;
  opacity: .95;
}

.btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn:active{
  transform: translateY(0px);
}

/* ---------- Optional request section ---------- */
.request{
  padding: 42px 16px 80px;
  border-top: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.55);
}

.request__inner{
  width: min(920px, 94vw);
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
}

.request__inner h2{
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 950;
}

.request__inner p{
  margin: 0;
  color: rgba(11,18,32,.72);
}

/* ---------- Responsive polish ---------- */
@media (max-width: 520px){
  .card{ padding: 22px 18px 22px; }
  .pill{ font-size: 16px; padding: 10px 14px; }
  .subtitle{ font-size: 16px; }
  .btn{ width: 100%; justify-content:center; }
}
/* =========================
   Catalog Add-on Styles
   ========================= */

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.page{ width:100%; }

.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(246,248,255,.70);
  border-bottom: 1px solid rgba(15,23,42,.10);
}

.nav__inner{
  width: min(1100px, 94vw);
  margin: 0 auto;
  padding: 12px 4px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

.brand__mark{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(71,122,255,1), rgba(129,75,255,1));
  box-shadow: 0 14px 30px rgba(71,122,255,.22);
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height: 1.1;
}

.brand__name{
  font-weight: 950;
  letter-spacing: .2px;
}

.brand__tag{
  font-size: 12.5px;
  color: rgba(11,18,32,.65);
  font-weight: 700;
}

.nav__links{
  display:flex;
  gap: 18px;
}

.nav__links a{
  color: rgba(11,18,32,.72);
  text-decoration:none;
  font-weight: 800;
}

.nav__links a:hover{
  color: rgba(11,18,32,.92);
}

.nav__cta{
  text-decoration:none;
  font-weight: 950;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
  color: rgba(11,18,32,.92);
}

.hero{
  padding-top: 34px;
  padding-bottom: 8px;
}

.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin: 6px 0 18px;
}

.btn--soft{
  color: rgba(11,18,32,.92);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.14);
  box-shadow: 0 10px 24px rgba(15,23,42,.10);
}

.btn--soft::after{
  content:"";
}

.hero__meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.meta{
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.60);
  border-radius: 18px;
  padding: 12px 12px;
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
}

.meta__label{
  display:block;
  font-size: 12px;
  color: rgba(11,18,32,.60);
  font-weight: 800;
}

.meta__value{
  display:block;
  margin-top: 4px;
  font-weight: 900;
  color: rgba(11,18,32,.92);
}

.section{
  padding: 34px 16px;
}

.section__inner{
  width: min(1100px, 94vw);
  margin: 0 auto;
}

.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.section__title{
  margin: 0;
  font-size: 26px;
  font-weight: 950;
}

.section__sub{
  margin: 6px 0 0;
  color: rgba(11,18,32,.70);
  font-weight: 650;
}

.controls{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search input{
  width: min(320px, 74vw);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.82);
  outline: none;
  font-weight: 700;
}

.select{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.82);
  font-weight: 800;
}

.filters{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin: 14px 0 18px;
}

.filter{
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.70);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 850;
  color: rgba(11,18,32,.80);
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
}

.filter.is-active{
  color: #fff;
  background: linear-gradient(135deg, rgba(71,122,255,1), rgba(129,75,255,1));
  border-color: rgba(71,122,255,.25);
}

.featured{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 12px 0 18px;
}

.featured__card{
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.80);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 16px 36px rgba(15,23,42,.10);
  position: relative;
  overflow:hidden;
}

.featured__card::before{
  content:"";
  position:absolute;
  inset:-20%;
  background: radial-gradient(420px 220px at 20% 0%, rgba(71,122,255,.18), transparent 60%);
  filter: blur(10px);
  pointer-events:none;
}

.featured__badge{
  display:inline-flex;
  font-weight: 950;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.70);
  position: relative;
  z-index: 1;
}

.featured__content{
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.featured__content h3{
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 950;
}

.featured__content p{
  margin: 0 0 12px;
  color: rgba(11,18,32,.72);
  font-weight: 650;
  line-height: 1.5;
}

.featured__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn--small{
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 14px;
}

.btn--small::after{ content:""; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product{
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.82);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 16px 36px rgba(15,23,42,.10);
}

.product__img{
  height: 160px;
  background:
    radial-gradient(360px 200px at 25% 30%, rgba(71,122,255,.25), transparent 60%),
    radial-gradient(360px 200px at 70% 35%, rgba(255,161,74,.22), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.40));
}

.product__img--alt{
  background:
    radial-gradient(360px 200px at 30% 35%, rgba(18,214,170,.18), transparent 62%),
    radial-gradient(360px 200px at 70% 35%, rgba(129,75,255,.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.40));
}

.product__body{
  padding: 14px 14px 16px;
}

.product__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}

.product__name{
  margin: 0;
  font-size: 18px;
  font-weight: 950;
}

.product__price{
  font-weight: 950;
  color: rgba(11,18,32,.80);
  white-space: nowrap;
}

.product__desc{
  margin: 8px 0 10px;
  color: rgba(11,18,32,.70);
  line-height: 1.5;
  font-weight: 650;
}

.product__tags{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tag{
  font-size: 12px;
  font-weight: 850;
  color: rgba(11,18,32,.72);
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.65);
  padding: 6px 10px;
  border-radius: 999px;
}

.product__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Inquiry section */
.section--soft{
  background: rgba(255,255,255,.52);
  border-top: 1px solid rgba(15,23,42,.10);
}

.form{
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(15,23,42,.10);
}

.form__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form label{
  display:flex;
  flex-direction:column;
  gap: 8px;
  font-weight: 850;
  color: rgba(11,18,32,.78);
}

.form input,
.form textarea{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.95);
  font-weight: 700;
  outline:none;
}

.form textarea{ resize: vertical; }

.form__wide{
  grid-column: 1 / -1;
}

.form__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer{
  padding: 26px 16px 40px;
}

.footer__inner{
  width: min(1100px, 94vw);
  margin: 0 auto;
  color: rgba(11,18,32,.60);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px){
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__meta{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .nav__links{ display:none; }
  .grid{ grid-template-columns: 1fr; }
  .featured{ grid-template-columns: 1fr; }
  .form__grid{ grid-template-columns: 1fr; }
}
