/**
 * FonePro — Shop (Coming Soon) Page Styles
 * Author : FonePro Dev
 * Date   : 2026-06-06
 */

/* ── Hero ──────────────────────────────────────────────── */
.fp-shop-hero {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 55%, #0d1a12 100%);
  padding: 80px 0 72px;
  overflow: hidden;
}
.fp-shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.fp-shop-hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
}
.fp-shop-hero-glow--a {
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.14) 0%,
    transparent 65%
  );
  top: -200px;
  left: -120px;
}
.fp-shop-hero-glow--b {
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.07) 0%,
    transparent 65%
  );
  bottom: -200px;
  right: -100px;
}
.fp-shop-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.fp-shop-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.fp-shop-coming-badge .fp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: fp-pulse 1.8s ease-in-out infinite;
}
@keyframes fp-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

.fp-shop-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.fp-shop-hero-title span {
  color: #10b981;
}

.fp-shop-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.fp-shop-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.fp-shop-btn-primary {
  background: #10b981;
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9375rem;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fp-shop-btn-primary:hover {
  background: #059669;
  color: #fff;
  transform: translateY(-1px);
}
.fp-shop-btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}
.fp-shop-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* Category preview pills in hero */
.fp-shop-hero-cats {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.fp-shop-hero-cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
}
.fp-shop-hero-cat i {
  color: #10b981;
  font-size: 14px;
}

/* ── What's Coming cards ───────────────────────────────── */
.fp-coming-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.fp-coming-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}
.fp-coming-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 3px 9px;
  border-radius: 999px;
}
.fp-coming-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.fp-coming-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.fp-coming-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ── Quote Form section ────────────────────────────────── */
.fp-quote-section {
  background: #f9fafb;
}

.fp-quote-form-wrap {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.fp-form-row {
  margin-bottom: 20px;
}
.fp-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.fp-form-label span {
  color: #ef4444;
  margin-left: 2px;
}
.fp-form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: "Inter", sans-serif;
  color: #111;
  background: #fff;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.fp-form-control:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.fp-form-control::placeholder {
  color: #9ca3af;
}
select.fp-form-control {
  cursor: pointer;
}
textarea.fp-form-control {
  resize: vertical;
  min-height: 120px;
}

.fp-form-submit {
  width: 100%;
  padding: 15px;
  background: #10b981;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.15s,
    transform 0.15s;
}
.fp-form-submit:hover {
  background: #059669;
  transform: translateY(-1px);
}
.fp-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.fp-form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}
.fp-form-msg--success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #065f46;
}
.fp-form-msg--error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #991b1b;
}

/* Trust sidebar */
.fp-quote-trust {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 8px;
}
.fp-quote-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.fp-quote-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-quote-trust-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}
.fp-quote-trust-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.fp-quote-notice {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
}
.fp-quote-notice i {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.fp-quote-notice p {
  font-size: 0.8125rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 991px) {
  .fp-shop-hero {
    padding: 64px 0 56px;
  }
  .fp-quote-form-wrap {
    padding: 28px 20px;
  }
  .fp-quote-trust {
    padding-left: 0;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .fp-shop-hero {
    padding: 48px 0 44px;
  }
  .fp-shop-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .fp-shop-btn-primary,
  .fp-shop-btn-ghost {
    width: 100%;
    justify-content: center;
  }
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
  }
  html {
    overflow-x: hidden;
  }
  .fp-hamburger {
    display: none !important;
  }
  .fp-bottom-nav {
    display: block;
  }
}
