*{box-sizing:border-box}
body{
  margin:0;
  font-family:Tahoma,Arial,sans-serif;
  background:linear-gradient(135deg,#070b18,#101b36);
  color:#fff;
  direction:rtl;
}
.header{
  padding:22px;
  text-align:center;
  background:rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.header h1{margin:0;font-size:30px}
.header p{color:#b8c7ff}
.hero{
  max-width:1100px;
  margin:30px auto;
  padding:35px 20px;
  text-align:center;
}
.hero h2{font-size:34px;margin:0 0 10px}
.hero p{color:#c9d3ff;font-size:18px}
.products{
  max-width:1100px;
  margin:auto;
  padding:20px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}
.card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,.35);
  transition:.25s;
}
.card:hover{transform:translateY(-6px)}
.card img{
  width:100%;
  height:170px;
  object-fit:cover;
  background:#000;
}
.card .content{padding:18px}
.card h3{margin:0 0 10px;font-size:22px}
.price{
  color:#5eead4;
  font-size:22px;
  font-weight:bold;
  margin:10px 0;
}
.btn{
  display:block;
  text-align:center;
  padding:13px;
  border-radius:14px;
  text-decoration:none;
  color:#fff;
  font-weight:bold;
  background:linear-gradient(135deg,#2563eb,#06b6d4);
}
.features{
  max-width:1100px;
  margin:25px auto;
  padding:20px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:15px;
}
.feature{
  background:rgba(255,255,255,.07);
  padding:18px;
  border-radius:18px;
  text-align:center;
}
.whatsapp{
  position:fixed;
  left:18px;
  bottom:18px;
  background:#22c55e;
  color:#fff;
  padding:14px 18px;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}
.footer{
  text-align:center;
  padding:25px;
  color:#9ca3af;
}
.product-page{
  padding:60px 7%;
}
.product-box{
  max-width:1100px;
  margin:auto;
  background:#fff;
  border-radius:28px;
  padding:30px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  box-shadow:0 15px 40px rgba(0,0,0,.10);
}
.product-img{
  background:#f3f4f6;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:25px;
}
.product-img img{
  width:100%;
  max-height:420px;
  object-fit:contain;
}
.product-info{
  text-align:right;
}
.product-info h1{
  font-size:42px;
  margin:15px 0;
}
.big-price{
  font-size:34px;
  font-weight:bold;
  color:#2563eb;
}
.desc{
  color:#6b7280;
  line-height:1.8;
  font-size:18px;
}
.list{
  margin:25px 0;
}
.list div{
  background:#f8fafc;
  margin:10px 0;
  padding:13px;
  border-radius:12px;
}
.second-btn{
  display:inline-block;
  margin-right:10px;
  padding:13px 24px;
  border-radius:12px;
  text-decoration:none;
  color:#111827;
  background:#e5e7eb;
  font-weight:bold;
}
@media(max-width:800px){
  .product-box{
    grid-template-columns:1fr;
  }
}
 .list div{
  color:#111827 !important;
  background:#f8fafc !important;
  font-weight:bold;
}

.product-info{
  color:#111827;
}

.product-info .desc{
  color:#4b5563;
}

.main-btn{
  background:#2563eb;
}

.main-btn:hover{
  background:#1d4ed8;
}
.vip-header{
  height:72px;
  background:#071126;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 7%;
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 8px 25px rgba(0,0,0,.18);
}

.vip-logo{
  font-size:22px;
  font-weight:900;
  color:#facc15;
}

.vip-menu{
  display:flex;
  gap:12px;
  align-items:center;
}

.vip-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:10px 16px;
  border-radius:12px;
  transition:.2s;
}

.vip-menu a:hover{
  background:#2563eb;
}

.vip-product-wrap{
  background:linear-gradient(135deg,#f8fafc,#eef4ff);
  min-height:calc(100vh - 72px);
  padding:42px 7%;
}

.vip-product-card{
  max-width:1180px;
  margin:auto;
  background:#fff;
  border-radius:30px;
  padding:34px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  box-shadow:0 18px 45px rgba(15,23,42,.12);
  border:1px solid #e5e7eb;
}

.vip-product-image{
  background:linear-gradient(135deg,#f3f4f6,#ffffff);
  border-radius:28px;
  padding:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:480px;
  overflow:hidden;
}

.vip-product-image img{
  width:100%;
  max-height:420px;
  object-fit:contain;
  transition:.3s;
}

.vip-product-image:hover img{
  transform:scale(1.04);
}

.vip-product-info{
  text-align:right;
  color:#0f172a;
}

.vip-badge{
  display:inline-block;
  background:#eaf1ff;
  color:#1d4ed8;
  padding:9px 15px;
  border-radius:50px;
  font-weight:800;
  margin-bottom:16px;
}

.vip-product-info h1{
  font-size:56px;
  margin:0 0 12px;
  color:#071126;
}

.vip-desc{
  color:#475569;
  font-size:20px;
  line-height:1.9;
  margin:0 0 18px;
}

.vip-price{
  color:#2563eb;
  font-size:46px;
  font-weight:900;
  margin:18px 0 24px;
}

.vip-price span{
  font-size:28px;
}

.vip-features{
  display:grid;
  gap:12px;
  margin-bottom:28px;
}

.vip-features div{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:15px 18px;
  font-size:18px;
  font-weight:800;
  color:#0f172a;
  display:flex;
  align-items:center;
  gap:12px;
}

.vip-features span{
  font-size:24px;
}

.vip-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.vip-buy,
.vip-back{
  text-align:center;
  padding:17px 20px;
  border-radius:16px;
  font-size:18px;
  font-weight:900;
  text-decoration:none;
  transition:.2s;
}

.vip-buy{
  background:linear-gradient(135deg,#2563eb,#0ea5e9);
  color:#fff;
  box-shadow:0 12px 25px rgba(37,99,235,.35);
}

.vip-buy:hover{
  transform:translateY(-3px);
}

.vip-back{
  background:#fff;
  color:#0f172a;
  border:2px solid #dbeafe;
}

.vip-back:hover{
  background:#eff6ff;
}

.vip-trust{
  max-width:1180px;
  margin:25px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:15px;
}

.vip-trust div{
  background:#fff;
  border-radius:20px;
  padding:20px;
  text-align:center;
  box-shadow:0 10px 25px rgba(15,23,42,.08);
}

.vip-trust b{
  display:block;
  margin:7px 0;
  color:#0f172a;
}

.vip-trust small{
  color:#64748b;
}

@media(max-width:850px){
  .vip-header{
    height:auto;
    padding:15px;
    display:block;
    text-align:center;
  }

  .vip-menu{
    justify-content:center;
    flex-wrap:wrap;
    margin-top:12px;
  }

  .vip-product-card{
    grid-template-columns:1fr;
    padding:22px;
  }

  .vip-product-info h1{
    font-size:40px;
  }

  .vip-product-image{
    min-height:300px;
  }

  .vip-actions{
    grid-template-columns:1fr;
  }
}
.checkout-form{
  display:grid;
  gap:12px;
  margin-top:25px;
}
.checkout-form label{
  font-weight:900;
  color:#0f172a;
}
.checkout-form input{
  width:100%;
  padding:16px;
  border:1px solid #dbeafe;
  border-radius:14px;
  font-size:17px;
  outline:none;
}
.checkout-form input:focus{
  border-color:#2563eb;
}
.checkout-form button{
  border:0;
  cursor:pointer;
  margin-top:10px;
}
.vip-payments{
  max-width:1180px;
  margin:30px auto 0;
  background:#fff;
  border-radius:24px;
  padding:30px;
  text-align:center;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
  border:1px solid #e5e7eb;
}

.vip-payments h2{
  margin:0 0 20px;
  color:#071126;
  font-size:28px;
}

.vip-payment-icons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.vip-payment-icons div{
  background:#f8fafc;
  border:1px solid #dbeafe;
  color:#0f172a;
  padding:13px 24px;
  border-radius:14px;
  font-weight:900;
  box-shadow:0 8px 18px rgba(15,23,42,.06);
}

.vip-payments p{
  color:#64748b;
  margin:0;
  font-size:16px;
  line-height:1.8;
}

.vip-bottom-features{
  max-width:1180px;
  margin:22px auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:15px;
}

.vip-bottom-features div{
  background:#fff;
  border-radius:20px;
  padding:22px;
  text-align:center;
  box-shadow:0 10px 25px rgba(15,23,42,.07);
  border:1px solid #e5e7eb;
}

.vip-bottom-features span{
  font-size:30px;
}

.vip-bottom-features b{
  display:block;
  margin:8px 0;
  color:#071126;
  font-size:18px;
}

.vip-bottom-features small{
  color:#64748b;
}

.vip-footer{
  margin-top:40px;
  background:#071126;
  color:#fff;
  text-align:center;
  padding:35px 7%;
}

.footer-logo{
  color:#facc15;
  font-size:24px;
  font-weight:900;
  margin-bottom:18px;
}

.footer-links,
.footer-contact{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.footer-links a,
.footer-contact a{
  color:#fff;
  text-decoration:none;
  background:rgba(255,255,255,.08);
  padding:10px 15px;
  border-radius:12px;
  font-weight:800;
}

.footer-contact a{
  background:#2563eb;
}

.vip-footer p{
  color:#94a3b8;
  margin:0;
}
.pay-card img{
  height:42px;
  max-width:130px;
  object-fit:contain;
  margin-bottom:10px;
}
.vip-payment-icons{
  gap:10px !important;
}

.pay-card{
  width:auto !important;
  height:auto !important;
  min-width:105px !important;
  padding:10px 14px !important;
  border-radius:12px !important;
}

.pay-card img{
  height:24px !important;
  max-width:72px !important;
  margin-bottom:5px !important;
}

.pay-card span{
  font-size:12px !important;
}

.vip-payments{
  padding:18px !important;
}
/* تصغير الصفحة الرئيسية */
.hero{
  min-height:300px !important;
  padding:45px 7% !important;
}

.hero h1,
.hero h2{
  font-size:30px !important;
}

.hero p{
  font-size:15px !important;
}

.categories,
.features{
  gap:10px !important;
  padding:15px 7% !important;
}

.categories div,
.feature{
  padding:12px !important;
  border-radius:12px !important;
  font-size:14px !important;
}

.section{
  padding:30px 7% !important;
}

.section h2{
  font-size:24px !important;
}

.grid,
.products{
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr)) !important;
  gap:14px !important;
  padding:15px 7% !important;
}

.card{
  border-radius:16px !important;
  padding:12px !important;
}

.card img{
  height:120px !important;
  border-radius:12px !important;
}

.card h3{
  font-size:17px !important;
  margin:10px 0 5px !important;
}

.card p{
  font-size:13px !important;
}

.card strong,
.price{
  font-size:18px !important;
}

.btn,
.buy,
.main-btn{
  padding:10px 14px !important;
  font-size:14px !important;
  border-radius:10px !important;
}

/* تصغير صفحة المنتج */
.vip-product-wrap{
  padding:25px 7% !important;
}

.vip-product-card{
  padding:22px !important;
  gap:25px !important;
  border-radius:22px !important;
}

.vip-product-image{
  min-height:320px !important;
  padding:18px !important;
}

.vip-product-image img{
  max-height:290px !important;
}

.vip-product-info h1{
  font-size:38px !important;
}

.vip-desc{
  font-size:16px !important;
}

.vip-price{
  font-size:34px !important;
}

.vip-features div{
  padding:10px 13px !important;
  font-size:15px !important;
  border-radius:12px !important;
}

.vip-buy,
.vip-back{
  padding:13px 16px !important;
  font-size:15px !important;
}

.vip-trust div,
.vip-bottom-features div{
  padding:14px !important;
  border-radius:14px !important;
}

.vip-payments{
  padding:15px !important;
  border-radius:16px !important;
}

.vip-payments h2{
  font-size:20px !important;
}

.pay-card{
  min-width:85px !important;
  padding:8px 10px !important;
}

.pay-card img{
  height:20px !important;
  max-width:60px !important;
}

.pay-card span{
  font-size:11px !important;
}
/* ترتيب المنتجات: بالجوال كل صف منتجين */
.products,
.grid{
  display:grid !important;
  grid-template-columns:repeat(2,1fr) !important;
  gap:10px !important;
  padding:12px !important;
}

.card{
  padding:9px !important;
  border-radius:14px !important;
}

.card img{
  height:95px !important;
  border-radius:10px !important;
}

.card .content{
  padding:9px !important;
}

.card h3{
  font-size:15px !important;
  margin:6px 0 !important;
}

.card p{
  font-size:12px !important;
  margin:4px 0 !important;
}

.price,
.card strong{
  font-size:15px !important;
  margin:6px 0 !important;
}

.btn,
.buy{
  padding:8px 10px !important;
  font-size:12px !important;
  border-radius:9px !important;
}

/* بالكمبيوتر نخليهم 4 جنب بعض */
@media(min-width:900px){
  .products,
  .grid{
    grid-template-columns:repeat(4,1fr) !important;
    max-width:1050px !important;
    margin:auto !important;
  }
}

/* تصغير صفحة التفاصيل بالكامل */
.vip-product-wrap{
  padding:18px 5% !important;
}

.vip-product-card{
  max-width:900px !important;
  padding:16px !important;
  gap:18px !important;
  border-radius:18px !important;
}

.vip-product-image{
  min-height:240px !important;
  padding:14px !important;
  border-radius:16px !important;
}

.vip-product-image img{
  max-height:220px !important;
}

.vip-product-info h1{
  font-size:30px !important;
  margin-bottom:8px !important;
}

.vip-badge{
  padding:6px 11px !important;
  font-size:12px !important;
}

.vip-desc{
  font-size:14px !important;
  line-height:1.6 !important;
}

.vip-price{
  font-size:28px !important;
  margin:10px 0 14px !important;
}

.vip-price span{
  font-size:18px !important;
}

.vip-features{
  gap:8px !important;
  margin-bottom:16px !important;
}

.vip-features div{
  padding:8px 10px !important;
  font-size:13px !important;
  border-radius:10px !important;
}

.vip-features span{
  font-size:18px !important;
}

.vip-buy,
.vip-back{
  padding:10px 12px !important;
  font-size:13px !important;
  border-radius:11px !important;
}

.vip-trust,
.vip-bottom-features{
  max-width:900px !important;
  gap:10px !important;
}

.vip-trust div,
.vip-bottom-features div{
  padding:10px !important;
  border-radius:12px !important;
}

.vip-payments{
  max-width:900px !important;
  padding:12px !important;
  margin-top:16px !important;
}

.vip-payments h2{
  font-size:17px !important;
  margin-bottom:10px !important;
}

.pay-card{
  min-width:72px !important;
  padding:6px 8px !important;
}

.pay-card img{
  height:18px !important;
  max-width:55px !important;
}

.pay-card span{
  font-size:10px !important;
}