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

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  background:#0b0b0b;
  color:#fff;
  line-height:1.5;
}

/* =========================================================
LAYOUT
========================================================= */
.product-container{
  display:flex;
  gap:60px;
  max-width:1200px;
  margin:90px auto 50px;
  padding:0 24px;
  align-items:flex-start;
}

/* =========================================================
IMAGE
========================================================= */
.product-left{
  flex:1.5;
}

.product-left img{
  width:100%;
  border-radius:16px;
  object-fit:cover;
}

/* =========================================================
RIGHT PANEL
========================================================= */
.product-right{
  width:420px;
  position:sticky;
  top:90px;
}

/* TITLE */
.product-right h1{
  font-size:30px;
  margin-bottom:6px;
}

/* SELLER */
.seller{
  font-size:13px;
  color:#777;
  margin-bottom:18px;
}

.seller a{
  color:#aaa;
  text-decoration:none;
}

.seller a:hover{
  color:#fff;
}

/* DESCRIPTION */
.desc{
  font-size:14px;
  color:#aaa;
  margin-bottom:22px;
}

/* =========================================================
VALUE BOX
========================================================= */
.value-box{
  background:#121212;
  border:1px solid rgba(255,255,255,0.05);
  padding:14px;
  border-radius:10px;
  font-size:13px;
  color:#ccc;
  margin-bottom:20px;
  line-height:1.6;
}

/* =========================================================
PRICE BOX
========================================================= */
.price-box{
  background:#121212;
  padding:22px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.05);
}

/* PRICE */
.price{
  font-size:28px;
  font-weight:700;
  margin-bottom:4px;
}

.billing{
  font-size:13px;
  color:#777;
}

/* PLAN */
.plan{
  font-size:12px;
  color:#777;
  margin-bottom:18px;
}

/* =========================================================
CTA BUTTON (PREMIUM)
========================================================= */
.buy-btn{
  display:block;
  width:100%;
  text-align:center;
  background:#ffffff;
  color:#000;
  padding:12px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  transition:0.2s;
}

.buy-btn:hover{
  background:#e5e5e5;
}

/* DISABLED */
.buy-btn.disabled{
  background:#1f1f1f;
  color:#777;
  cursor:not-allowed;
}

/* =========================================================
TRUST
========================================================= */
.trust{
  font-size:12px;
  color:#777;
  margin-top:16px;
  line-height:1.6;
}

/* =========================================================
EXTRA SECTION
========================================================= */
.product-extra{
  max-width:1200px;
  margin:40px auto 80px;
  padding:0 24px;
}

.section-title{
  font-size:18px;
  margin-bottom:12px;
}

.section-box{
  background:#121212;
  padding:20px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.05);
  font-size:14px;
  color:#aaa;
}

/* =========================================================
RESPONSIVE
========================================================= */
@media(max-width:900px){

  .product-container{
    flex-direction:column;
    gap:35px;
  }

  .product-right{
    width:100%;
    position:relative;
    top:0;
  }

}