/* ========== SHOP NAV ========== */
.shop-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 160, 220, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-brand:hover { color: var(--accent); }

.nav-lotus {
  color: var(--accent);
  font-size: 1.1rem;
}

.nav-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  font-weight: 400;
}

/* ========== SHOP HERO ========== */
.shop-hero {
  position: relative;
  padding: 10rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
}

.shop-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201, 160, 220, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(212, 168, 83, 0.05) 0%, transparent 45%);
  pointer-events: none;
}

.shop-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.shop-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.shop-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

.shop-hero-accent {
  color: var(--accent);
  font-style: italic;
}

.shop-hero-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* ========== FLASH ========== */
.shop-flash-error {
  max-width: 900px;
  margin: 0 auto 1rem;
  padding: 0.9rem 1.5rem;
  background: rgba(200, 50, 50, 0.12);
  border: 1px solid rgba(200, 50, 50, 0.3);
  border-radius: var(--radius);
  color: #f08080;
  font-size: 0.9rem;
  text-align: center;
}

/* ========== PRODUCT GRID ========== */
.shop-main {
  padding: 3rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* ========== PRODUCT CARD ========== */
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 160, 220, 0.1);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.product-card.card-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-available:hover {
  border-color: rgba(201, 160, 220, 0.3);
  box-shadow: 0 8px 40px rgba(201, 160, 220, 0.1);
  transform: translateY(-3px);
}

.product-coming-soon {
  opacity: 0;
}

.product-coming-soon.card-visible {
  opacity: 0.55;
}

.product-coming-soon:hover {
  border-color: rgba(201, 160, 220, 0.15);
}

/* Shimmer line on available card top */
.product-available::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  align-self: flex-start;
}

.product-available .product-badge {
  background: rgba(201, 160, 220, 0.15);
  color: var(--accent);
  border: 1px solid rgba(201, 160, 220, 0.25);
}

.product-coming-soon .product-badge {
  background: rgba(154, 149, 144, 0.12);
  color: var(--fg-muted);
  border: 1px solid rgba(154, 149, 144, 0.2);
}

.product-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.product-body {
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.product-tagline {
  font-size: 0.9rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.product-description {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.feature-dot {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ========== PRODUCT FOOTER ========== */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-buy:hover {
  background: #d8b2eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 160, 220, 0.3);
}

.btn-buy:active {
  transform: translateY(0);
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn-buy:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-notify {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
  opacity: 0.6;
  cursor: default;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  background: var(--bg-manifesto);
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.trust-icon {
  font-size: 1rem;
  color: var(--accent);
}

/* ========== SUCCESS PAGE ========== */
.success-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
}

.success-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(201, 160, 220, 0.15);
  border-radius: var(--radius);
  padding: 4rem 3rem;
  position: relative;
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), var(--accent), transparent);
}

.success-symbol {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.8; text-shadow: 0 0 20px rgba(201, 160, 220, 0.3); }
  50% { opacity: 1; text-shadow: 0 0 40px rgba(201, 160, 220, 0.6); }
}

.success-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.success-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.success-sub strong {
  color: var(--gold);
}

.success-email-confirm {
  background: rgba(201, 160, 220, 0.07);
  border: 1px solid rgba(201, 160, 220, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.success-email-confirm p {
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.success-email-confirm p:last-child { margin-bottom: 0; }

.success-muted {
  font-size: 0.82rem !important;
  color: var(--fg-muted) !important;
  font-style: italic;
}

.success-message {
  margin-bottom: 2.5rem;
}

.success-message p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-style: italic;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  background: #d8b2eb;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .shop-hero {
    padding: 8rem 1.5rem 4rem;
  }

  .shop-main {
    padding: 2rem 1.5rem 4rem;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    gap: 1.5rem;
  }

  .success-card {
    padding: 3rem 1.75rem;
  }

  .shop-nav {
    padding: 1rem 1.5rem;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-buy {
    width: 100%;
    justify-content: center;
  }
}
