/* =============================================
   DIGITAL STORE PAGE (Standalone)
   ============================================= */

.dsp-split {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}

.dsp-hero {
  position: relative;
}

.dsp-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.dsp-badge-new { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.dsp-badge-hot { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }

.dsp-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.dsp-title span {
  display: block;
  color: var(--nav-gold);
  font-size: 2rem;
  opacity: 0.9;
}

.dsp-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
}

.dsp-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.dsp-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}
.dsp-features i {
  color: var(--nav-gold);
  font-size: 1.1rem;
}

.dsp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.dsp-back:hover { color: var(--nav-gold); }

/* Order Card */
.dsp-card {
  background: rgba(15, 18, 28, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.dsp-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dsp-card-header i { font-size: 1.5rem; }
.dsp-card-header span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.dsp-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.dsp-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dsp-option:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}
.dsp-option.active {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--nav-gold);
}

.dsp-option-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dsp-option-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: transparent;
  transition: all 0.3s ease;
}
.dsp-option.active .dsp-option-check {
  background: var(--nav-gold);
  border-color: var(--nav-gold);
  color: #000;
}

.dsp-option-label {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}
.dsp-option-tag {
  font-size: 0.6rem;
  background: var(--nav-gold);
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
}
.dsp-option-price {
  font-weight: 700;
  color: var(--nav-gold);
  font-size: 1.1rem;
}

.dsp-summary {
  background: rgba(0,0,0,0.2);
  padding: 1.25rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}
.dsp-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.dsp-summary-val { color: #fff; font-weight: 600; }
.dsp-summary-row.total-row {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  color: #fff;
}
.dsp-total-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--nav-gold);
}

.dsp-trust-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.dsp-trust-badge {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.03);
  padding: 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  text-transform: uppercase;
}
.dsp-trust-badge i { color: var(--nav-gold); }

.dsp-actions {
  display: grid;
  grid-template-columns: 1fr 60px 60px;
  gap: 10px;
}
.dsp-btn-order {
  background: var(--nav-gold);
  color: #000;
  border: none;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dsp-btn-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}
.dsp-btn-wa, .dsp-btn-dc {
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.dsp-btn-wa { background: rgba(37, 211, 102, 0.1); color: #25d366; border: 1px solid rgba(37, 211, 102, 0.2); }
.dsp-btn-wa:hover { background: #25d366; color: #fff; transform: translateY(-3px); }
.dsp-btn-dc { background: rgba(88, 101, 242, 0.1); color: #5865f2; border: 1px solid rgba(88, 101, 242, 0.2); }
.dsp-btn-dc:hover { background: #5865f2; color: #fff; transform: translateY(-3px); }

@media (max-width: 1100px) {
  .dsp-split { grid-template-columns: 1fr; gap: 3rem; }
  .dsp-hero { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .dsp-title { font-size: 2.8rem; }
  .dsp-desc { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .dsp-title { font-size: 2.2rem; }
  .dsp-title span { font-size: 1.4rem; }
  .dsp-card { padding: 1.5rem; }
  .dsp-actions { grid-template-columns: 1fr; }
}

/* ── Midnight badge ─────────────────────────────── */
.dsp-badge-midnight {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.35);
}

/* ── Same-day tag (green) ───────────────────────── */
.dsp-tag-sameday {
  background: #16a34a !important;
  color: #fff !important;
}

/* ── Includes text ──────────────────────────────── */
.dsp-includes-val {
  font-size: 0.8rem;
  line-height: 1.4;
  max-width: 220px;
  text-align: right;
  color: rgba(255,255,255,0.75) !important;
}

/* ── Delivery notice box ────────────────────────── */
.dsp-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  line-height: 1.5;
}
.dsp-notice i {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.dsp-notice strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}
.dsp-notice span {
  color: inherit;
  opacity: 0.85;
}

/* Green — same-day */
.dsp-notice-green {
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #4ade80;
}

/* Amber — 72h */
.dsp-notice-amber {
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.35);
  color: #fbbf24;
}

/* Background tweaks for store page */
#store-hero-bg {
  filter: blur(15px) brightness(0.6) saturate(1.2);
  opacity: 0.6;
}


