*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#fff;
  color:#111;
}

.wrap{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  text-align:center;
}

.card{
  width:min(720px, 92vw);
}

.kicker{
  font-size:12px;
  letter-spacing:.18em;
  font-weight:700;
  opacity:.75;
  margin-bottom:18px;
}

.title{
  font-size:42px;
  line-height:1.05;
  letter-spacing:.02em;
  margin:0 0 14px;
  font-weight:800;
}

.sub{
  margin:0 auto 22px;
  max-width:52ch;
  font-size:16px;
  line-height:1.5;
  opacity:.75;
}

.actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#111;
  border:1px solid rgba(0,0,0,.18);
  padding:10px 14px;
  border-radius:12px;
}

.btn:hover{ background: rgba(0,0,0,.04); }

.small{
  margin-top:18px;
  font-size:12px;
  opacity:.6;
}

@media (max-width:520px){
  .title{ font-size:34px; }
}
.brandmark{
  height: 90px;
  width: auto;
  display: block;
  margin: 0 auto 14px;
}
.powered{
  width: 100%;
  max-width: 980px;
  margin: 24px auto 12px;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

.powered .copyright{
  margin-top: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
}
.page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

/* ---------- XOO featured product block ---------- */
.product{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
}

.product-img{
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
}

.product-title{
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.product-desc{
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.4;
}

.product-price{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.price-placeholder{
  font-weight: 700;
  opacity: 0.9;
}

@media (max-width: 560px){
  .product{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product-img{
    margin: 0 auto;
  }
}
