/* ========== DIGITAL STORE ========== */
.store-section {
  padding: 100px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.store-heading {
  text-align: center;
  font-size: 2.2rem;
  color: #10B981;
  margin-bottom: 10px;
}

.store-heading i {
  margin-right: 10px;
}

.store-sub {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 40px;
  font-size: 1rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.store-card {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.store-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0f172a;
}

.store-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card-body {
  padding: 16px;
}

.store-card-body h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: #f1f5f9;
}

.store-card-price {
  color: #10B981;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 14px;
}

.store-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.store-btn {
  flex: 1;
  min-width: 100px;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: 0.2s ease;
}

.store-btn-demo {
  background: #334155;
  color: #e2e8f0;
}

.store-btn-demo:hover {
  background: #475569;
}

.store-btn-buy {
  background: #10B981;
  color: #fff;
}

.store-btn-buy:hover {
  background: #059669;
}

/* Buy Modal */
.buy-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  padding: 20px;
  animation: buyModalFade 0.2s ease;
}

@keyframes buyModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.buy-modal-box {
  background: linear-gradient(145deg, #1e293b, #334155);
  border-radius: 16px;
  padding: 28px;
  max-width: 420px;
  width: 100%;
  position: relative;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  animation: buyModalSlide 0.3s ease;
}

@keyframes buyModalSlide {
  from { opacity: 0; transform: scale(0.95) translateY(-10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.buy-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.buy-modal-close:hover {
  color: #10B981;
}

.buy-modal-title {
  font-size: 1.25rem;
  color: #f1f5f9;
  margin: 0 0 20px;
  padding-right: 28px;
}

.buy-modal-title i {
  margin-right: 8px;
  color: #10B981;
}

.buy-modal-label {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 4px;
}

.buy-modal-price {
  margin-bottom: 18px;
}

.buy-modal-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10B981;
}

.buy-modal-payment {
  margin-bottom: 20px;
}

.buy-modal-number {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.buy-modal-number i {
  color: #10B981;
}

.buy-modal-number a {
  color: #38bdf8;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
}

.buy-modal-number a:hover {
  text-decoration: underline;
}

.buy-modal-copy {
  margin-left: auto;
  background: #334155;
  border: none;
  color: #94a3b8;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.buy-modal-copy:hover {
  background: #10B981;
  color: #fff;
}

.buy-modal-email {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.buy-modal-email p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0 0 10px;
}

.buy-modal-email-display {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 14px;
}

.buy-modal-email-display i.fa-envelope {
  color: #10B981;
  flex-shrink: 0;
}

.buy-modal-email-display span {
  color: #38bdf8;
  font-weight: 500;
  font-size: 0.95rem;
  word-break: break-all;
}

.buy-modal-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #10B981;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  justify-content: center;
}

.buy-modal-email-btn:hover {
  background: #059669;
}

.light-mode .store-card {
  background: #f1f5f9;
  border-color: rgba(16, 185, 129, 0.3);
}

.light-mode .store-card-body h3 {
  color: #0f172a;
}

.light-mode .buy-modal-box {
  background: linear-gradient(145deg, #f8fafc, #e2e8f0);
  border-color: rgba(16, 185, 129, 0.4);
}

.light-mode .buy-modal-title {
  color: #0f172a;
}

.light-mode .buy-modal-number,
.light-mode .buy-modal-email-display {
  background: #e2e8f0;
}

    /* ========== COMING SOON PAGE STYLING ========== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.coming-icon {
  font-size: 4rem;
  color: #38bdf8;
  margin: 150px auto 20px;
  text-align: center;
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  color: #cbd5e1;
  text-align: center;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.back-btn {
  background: #38bdf8;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  margin: 0 auto 40px;
  transition: 0.3s ease;
}

.back-btn:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
}

/* Responsive */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .coming-icon {
    font-size: 3rem;
  }
}
