/* ستايل عام */
/* استدعاء الخط */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* ستايل عام */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif; /* خط أنيق */
  background: url('anita-austvika-00AGxpeSp00-unsplash.jpg') no-repeat center center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* هيدر على اليسار */
.subscribe-header {
  display: flex;
  justify-content: flex-start;
  padding: 30px 50px;
  font-family: 'Brush Script MT', cursive;
  color: rgba(218, 254, 255, 0.729);
}

.header-left {
  text-align: left;
}

.store-name {
  font-size: 2.5rem;
  margin: 0;
}

.designer-name {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 5px;
}

/* كروت الاشتراك */
.subscription-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  margin-top: auto;   /* يخليهم بأسفل الواجهة */
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px 25px;
  width: 280px;
  height: 350px; /* أطول شاقولياً */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* يخلي الزر بأسفل الكرت */
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.card h2 {
  margin: 0 0 15px 0;
}

.card .price {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.card ul li {
  margin: 10px 0;
  opacity: 0.9;
}

/* أزرار */
.btn {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(20px);
  align-self: center; /* يوسّط الزر */
}

.btn:hover {
  background-color: #ff639a6b;
  color: #000;
  font-weight: bold;
}
::-webkit-scrollbar {
  width: 10px; /* العرض */
  height: 20px; /* الارتفاع للأفقي */
}

/* المسار */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05); /* شفاف */
  border-radius: 10px;
}

/* المقبض */
::-webkit-scrollbar-thumb {
  background: rgba(249, 98, 128, 0.798); /* شفاف أبيض */
  border-radius: 20px; 
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 133, 255, 0.565);
  transition: background 0.3s ease; 
} 

/* عند التمرير عليه */
::-webkit-scrollbar-thumb:hover {
  background: rgba(198, 93, 255, 0.4);
}

.glass-button {
    background: rgba(215, 215, 215, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.435);
  border-radius: 12px;   
  padding: 8px 15px; 
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  user-select: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
    
  -webkit-backdrop-filter: blur(14px);
}

.glass-button:hover {
  background-color: rgba(184, 184, 184, 0.3);
  transform: translateY(-5px);
  cursor: pointer;
}
.glass-button:disabled {
  cursor: default;
  opacity: 0.5;
  transform: none;
} 