/* ==========================================================================
   ShipReady Landing Page Styles
   Accurate clone of SuperProfile layout with requested customizations:
   - No "Built with SuperProfile" watermark
   - Clean, modern backdrop (no red/black side patterns)
   - Global currency switcher & international country phone input
   ========================================================================== */

:root {
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --bg-backdrop: #ffffff;
  --surface-white: #ffffff;
  --surface-subtle: #f8f9fa;
  --surface-border: #e6e8eb;
  --surface-hover: #f1f3f5;
  
  --text-primary: #0f1419;
  --text-secondary: #536471;
  --text-muted: #828b94;
  --text-subtle: #6c757d;

  --color-primary: #000000;
  --color-primary-hover: #212529;
  --color-accent-purple: #7300fa;
  --color-green: #10b981;
  --color-strike: #8e949c;

  --shadow-card: 0 4px 24px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-sticky: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Page Outer Canvas - Full width, clean backdrop */
.page-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 0 0 80px 0;
}

/* Top Navbar */
.top-navbar {
  width: 100%;
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--surface-border);
  margin-bottom: 32px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand .brand-text {
  font-size: 19px;
  font-weight: 700;
  color: #0f1419;
  letter-spacing: -0.02em;
}

/* Global Currency Selector */
.currency-selector-pill {
  display: inline-flex;
  align-items: center;
  background: #f1f3f5;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  padding: 3px;
}

.currency-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.currency-btn.active {
  background: #ffffff;
  color: #0f1419;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.currency-btn:hover:not(.active) {
  color: #0f1419;
}

/* Main Content Container - Full size, seamless */
.main-container {
  width: 100%;
  max-width: 1160px;
  background: #ffffff;
  border-radius: 0;
  padding: 0 24px;
  box-shadow: none;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ==========================================================================
   Left Column: Hero & Product Description
   ========================================================================== */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Cover Image Banner */
.hero-cover-wrap {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  line-height: 0;
}

.hero-cover-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: -14px;
  margin-bottom: 2px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}

.trust-badge-icon {
  width: 16px;
  height: 16px;
  color: #2563eb;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: #cbd5e1;
}

/* Product Title */
.product-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* Section Common Styles */
.section-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* About Description */
.about-content {
  color: #2c333a;
  font-size: 15px;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-content p {
  margin: 0;
}

.about-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Consistent Outline Icon Checklist */
.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 6px 0;
  padding-left: 2px;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #1e293b;
}

.feature-check-icon {
  width: 18px;
  height: 18px;
  color: #2563eb;
  flex-shrink: 0;
}

/* Founder Credibility Line */
.founder-credibility {
  color: #475569;
  font-style: italic;
  font-size: 14px;
  padding: 4px 0;
  border-left: 2px solid #cbd5e1;
  padding-left: 12px;
  margin: 4px 0;
}

/* Before / After Two-Panel Comparison Graphic */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 8px 0 12px 0;
}

.comparison-panel {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-rejected {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.panel-approved {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

.panel-rejected .comparison-header {
  color: #dc2626;
}

.panel-approved .comparison-header {
  color: #16a34a;
}

.comparison-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.status-red {
  background: #dc2626;
}

.status-green {
  background: #16a34a;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  line-height: 1.4;
}

.panel-rejected .comparison-list {
  color: #991b1b;
}

.panel-approved .comparison-list {
  color: #166534;
}

.comparison-list li {
  position: relative;
  padding-left: 14px;
}

.comparison-list li::before {
  content: "•";
  position: absolute;
  left: 2px;
  font-weight: bold;
}

.about-disclaimer {
  color: var(--text-subtle);
  font-size: 14px;
  font-style: italic;
  margin-top: 4px;
}

/* What You'll Get 3-Column Summary */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--surface-subtle);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-item-title {
  font-size: 12px;
  color: var(--text-muted);
}

.summary-item-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Login / Sign-in Banner */
.login-banner {
  background: var(--surface-subtle);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.login-banner-cta {
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.login-banner-cta:hover {
  color: #333;
}

/* Support & Contact */
.support-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.support-item:hover {
  color: var(--text-primary);
}

.support-item svg {
  stroke: var(--text-muted);
  flex-shrink: 0;
}

/* ==========================================================================
   Right Column: Floating Sticky Checkout Card (Matching SuperProfile Reference)
   ========================================================================== */
.right-column {
  position: sticky;
  top: 24px;
}

.checkout-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Header Notice */
.checkout-notice {
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: 2px;
}

/* Form Group & Notched Outline Inputs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notched-input-wrap {
  position: relative;
  width: 100%;
}

.notched-input {
  width: 100%;
  height: 50px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 15px;
  font-family: inherit;
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.notched-input:focus {
  border-color: #111827;
  box-shadow: 0 0 0 1px #111827;
}

.notched-label {
  position: absolute;
  top: -8px;
  left: 14px;
  background: #ffffff;
  padding: 0 5px;
  font-size: 12px;
  color: #6b7280;
  pointer-events: none;
  line-height: 1;
  z-index: 2;
  font-weight: 400;
}

.notched-phone-wrap {
  position: relative;
}

.notched-phone-row {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0 16px;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.notched-phone-wrap:focus-within .notched-phone-row {
  border-color: #111827;
  box-shadow: 0 0 0 1px #111827;
}

.country-picker-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-size: 15px;
  font-family: inherit;
  font-weight: 400;
  color: #111827;
  cursor: pointer;
  padding: 0 10px 0 0;
  white-space: nowrap;
}

.dropdown-chevron {
  display: inline-block;
  transition: transform 0.2s ease;
}

.country-picker-btn.open .dropdown-chevron {
  transform: rotate(180deg);
}

.phone-text-input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: #111827;
  background: transparent;
  padding-left: 4px;
}

/* Country Selector Dropdown Modal */
.country-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 300px;
  max-height: 280px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sticky);
  z-index: 100;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.country-dropdown-menu.show {
  display: flex;
}

.country-search-box {
  padding: 8px 10px;
  border-bottom: 1px solid #e2e8f0;
}

.country-search-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
}

.country-search-input:focus {
  border-color: #111827;
}

.country-list {
  overflow-y: auto;
  max-height: 230px;
  list-style: none;
}

.country-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.country-item:hover {
  background: #f1f5f9;
}

.country-item-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-item-dial {
  color: var(--text-muted);
  font-weight: 500;
}

/* Floating Input styles for Sign In Modal */
.floating-input-wrap {
  position: relative;
  width: 100%;
}

.floating-input {
  width: 100%;
  height: 50px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 16px 14px 4px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text-primary);
  background: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}

.floating-input:focus {
  border-color: #111827;
}

.floating-label {
  position: absolute;
  left: 14px;
  top: 16px;
  font-size: 13.5px;
  color: #64748b;
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
  top: 6px;
  font-size: 11px;
  color: #111827;
  font-weight: 600;
}

/* Standalone White Discount Code Pill Card (Exact Image Match) */
.discount-pill-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #f0f0f2;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  padding: 13px 16px;
  cursor: pointer;
  margin-top: 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.discount-pill-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.discount-pill-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #4b5563;
  font-weight: 400;
}

.discount-icon-gear {
  flex-shrink: 0;
}

.discount-pill-add {
  font-size: 14.5px;
  font-weight: 500;
  color: #4b5563;
}

/* Inline Promo Code Input Tray */
.discount-input-row {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
}

.discount-input-row.active {
  display: flex;
}

.discount-input-wrap {
  display: flex;
  gap: 8px;
}

.discount-code-input {
  flex: 1;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
}

.discount-code-input:focus {
  border-color: #111827;
}

.discount-code-input::placeholder {
  text-transform: none;
  color: #9ca3af;
}

.discount-apply-btn {
  height: 42px;
  padding: 0 16px;
  background: #111827;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.discount-apply-btn:hover {
  background: #000000;
}

.discount-applied-msg {
  display: none;
  font-size: 12.5px;
  color: #16a34a;
  font-weight: 600;
}

/* Price Breakdown (Exact Image Match) */
.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}

.price-label {
  color: #374151;
  font-size: 15px;
  font-weight: 400;
}

.price-values {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-strikethrough {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 15px;
  font-weight: 400;
}

.price-sale-value {
  color: #111827;
  font-size: 15px;
  font-weight: 500;
}

.price-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 6px 0;
}

.price-row.total-row {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.total-label {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.total-value {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

/* CTA Button: Get it now -> (Exact Image Match) */
.cta-button {
  width: 100%;
  height: 50px;
  background: #0e1013;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 6px;
}

.cta-button:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cta-arrow-icon {
  stroke: #ffffff;
  stroke-width: 2.2;
  transition: transform 0.15s ease;
}

.cta-button:hover .cta-arrow-icon {
  transform: translateX(3px);
}

/* ==========================================================================
   Mobile Sticky Bottom Checkout Bar
   ========================================================================== */
.mobile-checkout-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--surface-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}

.mobile-bar-price-info {
  display: flex;
  flex-direction: column;
}

.mobile-bar-label {
  font-size: 12px;
  color: var(--text-muted);
}

.mobile-bar-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-bar-cta {
  height: 44px;
  padding: 0 20px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* ==========================================================================
   Toast Notification Component
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #111827;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Order Lookup / Sign-in Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 16px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 440px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .right-column {
    position: static;
  }

  .mobile-checkout-bar {
    display: flex;
  }

  .main-container {
    padding: 20px 16px 80px 16px;
  }

  .product-title {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .page-wrapper {
    padding: 12px 8px 90px 8px;
  }

  .top-navbar {
    padding: 8px 4px;
    margin-bottom: 16px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
