/* ====== Global ====== */
body {
  font-family: 'Montserrat', sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

/* ====== Container ====== */
.container {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  width: 100%;
  max-width: 420px;   /* مرن للويب */
  margin: 40px 20px;  /* مارجن خارجي */
}

/* ====== Logo ====== */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.logo .logo-circle {
  background: #000;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.logo img {
  width: 55px;
  height: auto;
}

.company-name {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.company-name .highlight-x {
  color: #DCDA04;
  font-size: 32px;
  font-weight: 900;
}

/* ====== Store Buttons ====== */
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.store-badge {
  width: 200px;   /* العرض الموحد */
  height: 65px;   /* الارتفاع الموحد */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000; /* خلفية لضبط الحواف */
  border-radius: 8px;
  overflow: hidden;
}

.store-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* يضمن أن الشعار يملأ المساحة بدون تمدد */
  display: block;
  transition: transform 0.2s ease;
}

.store-badge img:hover {
  transform: scale(1.05);
}

/* موبايل */
@media (max-width: 600px) {
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-badge {
    width: 240px; 
    height: 75px;
  }
}

/* ====== Social Buttons ====== */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 0;
  margin: 8px 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn i { font-size: 18px; }

.facebook { background: #1877f2; }
.facebook:hover { background: #145dbf; }

.instagram { background: #c13584; }
.instagram:hover { background: #a72d6a; }

.whatsapp { background: #25d366; }
.whatsapp:hover { background: #1ebc57; }

/* ====== Divider ====== */
hr {
  margin: 24px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* ====== QR Section ====== */
.qr-section img {
  width: 160px;
  height: auto;
  margin: 12px 0;
}

.qr-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.qr-btn:hover {
  background: #333;
}

/* ====== Footer ====== */
.footer {
  margin-top: 20px;
  font-size: 13px;
  color: #777;
}

/* ====== Responsive ====== */
@media (max-width: 600px) {
  .container {
    max-width: 95%;
    padding: 20px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-buttons img {
    width: 200px;
  }

  .company-name {
    font-size: 24px;
  }
}
