/* 
   Falcon Wearables Storefront Stylesheet
   Designed with premium dark mode aesthetics, clean gradients, and subtle micro-animations.
*/

:root {
  /* Design Tokens */
  --bg-dark: #07080e;
  --bg-deep: #0b0c16;
  --card-bg: rgba(15, 17, 30, 0.6);
  --card-border: rgba(255, 255, 255, 0.06);
  --input-bg: rgba(11, 12, 22, 0.8);
  
  --primary: #a78bfa;
  --primary-glow: rgba(167, 139, 250, 0.2);
  --secondary: #6366f1;
  --secondary-glow: rgba(99, 102, 241, 0.15);
  
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.15);
  --warning: #f59e0b;
  --warning-glow: rgba(245, 158, 11, 0.15);
  --danger: #ef4444;
  --danger-glow: rgba(239, 68, 68, 0.15);
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #4b5563;
  
  --purple-indigo-gradient: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --dark-metallic: linear-gradient(135deg, #2e354f 0%, #171a2a 100%);
}

/* Base resets & setups */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(139, 92, 246, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(99, 102, 241, 0.08) 0%, transparent 45%);
}

/* Typography Headings */
h1, h2, h3, h4, .tagline, .price-amount, .btn-submit, .btn-primary {
  font-family: 'Outfit', sans-serif;
}

/* Monospace Helpers */
.monospace {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Test Utility Bar at Top */
.test-utility-bar {
  background: rgba(13, 16, 28, 0.95);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding: 0.75rem 2rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.utility-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.utility-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.utility-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 8px #a78bfa;
  animation: pulsePurple 2s infinite;
}

.utility-desc {
  color: var(--text-secondary);
  display: none;
}

@media (min-width: 768px) {
  .utility-desc {
    display: inline;
  }
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.param-status {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid transparent;
}

.param-status.text-inactive {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.05);
}

.param-status.text-active {
  background: var(--success-glow);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.2);
}

.param-status.text-warning {
  background: var(--warning-glow);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.2);
}

.btn-utility {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
  border-radius: 6px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-utility:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: #8b5cf6;
  color: #fff;
  transform: translateY(-1px);
}

.btn-clear {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.btn-clear:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* App Layout Container */
.app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Header Component */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--card-border);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  background: var(--purple-indigo-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.logo-section h1 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-section p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Status Badge indicators */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--card-border);
}

.status-badge.tag-active {
  background: var(--success-glow);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
}

.status-badge.tag-inactive {
  background: rgba(239, 68, 68, 0.08);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.2);
}

.status-badge .indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}

.status-badge.tag-active .indicator {
  box-shadow: 0 0 6px currentColor;
  animation: pulseGreen 2s infinite;
}

.cart-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
}

.cart-count {
  background: #6366f1;
  color: #fff;
  font-size: 0.65rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Two-Column Storefront Layout */
.storefront-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  animation: fadeIn 0.5s ease-out;
}

@media (min-width: 992px) {
  .storefront-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Left Column: Product Showcase/Visuals */
.product-gallery {
  position: relative;
  background: rgba(13, 15, 28, 0.4);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
}

.gallery-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* CSS Smartwatch Graphic */
.watch-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: scale(0.9);
}

@media (min-width: 480px) {
  .watch-container {
    transform: scale(1.05);
  }
}

.watch-band {
  width: 72px;
  height: 120px;
  background: linear-gradient(90deg, #171822 0%, #292a3b 50%, #171822 100%);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.watch-band.top {
  border-bottom: 2px solid #11121a;
  margin-bottom: -15px;
}

.watch-band.bottom {
  border-top: 2px solid #11121a;
  margin-top: -15px;
}

.watch-case {
  width: 196px;
  height: 196px;
  border-radius: 50%;
  background: var(--dark-metallic);
  padding: 8px;
  position: relative;
  box-shadow: 
    0 15px 45px rgba(0, 0, 0, 0.6),
    inset 0 2px 5px rgba(255, 255, 255, 0.15),
    inset 0 -2px 5px rgba(0, 0, 0, 0.6);
  z-index: 5;
}

.watch-bezel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0f101a;
  padding: 8px;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.8);
}

.watch-screen {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #0e111d 60%, #06080e 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.screen-header {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-top: 14px;
}

.screen-heart-rate {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 6px;
}

.heart-icon {
  font-size: 0.75rem;
  animation: heartPulse 1.2s infinite;
}

.pulse-bpm {
  font-size: 0.95rem;
  font-weight: 700;
}

.bpm-unit {
  font-size: 0.55rem;
  color: var(--text-secondary);
}

.screen-time {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.screen-date {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.screen-battery {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.6rem;
  color: #34d399;
  margin-top: 6px;
}

.screen-footer {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  margin-top: auto;
}

.watch-crown {
  position: absolute;
  right: -5px;
  top: calc(50% - 15px);
  width: 10px;
  height: 30px;
  background: linear-gradient(180deg, #3d4669 0%, #1e2236 100%);
  border-radius: 4px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(255,255,255,0.1);
}

/* Right Column: Product Info/Details */
.product-details {
  display: flex;
  flex-direction: column;
}

.tagline {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.product-details h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.price-currency {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.stock-badge {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-left: 0.75rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.product-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Features Grid */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 480px) {
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.spec-card {
  display: flex;
  gap: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.spec-icon {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.spec-card strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.spec-card p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Buttons */
.btn-primary {
  background: var(--purple-indigo-gradient);
  border: none;
  color: #fff;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
  text-align: center;
  align-self: flex-start;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.45);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  border-radius: 10px;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Modal Overlay & Card */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 6, 12, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: rgba(18, 22, 39, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.modal-body {
  padding: 1.5rem;
}

/* Order summary pill in modal */
.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.checkout-item-details strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.checkout-item-details p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.checkout-item-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

/* Checkout Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.flex-2 { flex: 2; }
.flex-1 { flex: 1; }

label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input {
  background: var(--input-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--card-border);
}

.btn-cancel {
  background: none;
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  border-radius: 8px;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.btn-submit {
  background: var(--purple-indigo-gradient);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.35);
}

/* Success View Layout */
.success-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  animation: fadeIn 0.4s ease-out;
}

.success-card {
  background: var(--card-bg);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--success-glow);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.15);
}

.success-card h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.success-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.order-summary-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  width: 100%;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

.summary-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.summary-row span {
  color: var(--text-secondary);
}

.summary-row strong {
  color: #fff;
}

.summary-row .text-success {
  color: #34d399;
}

/* Logging Monitor in Success screen */
.tracking-debug-box {
  width: 100%;
  background: #06070b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  text-align: left;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  margin-bottom: 2rem;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
}

.debug-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(167, 139, 250, 0.2);
  padding-bottom: 0.15rem;
}

.tracking-debug-box p {
  color: #a5b4fc;
  line-height: 1.4;
}

.log-success { color: #34d399; font-weight: bold; }
.log-error { color: #f87171; font-weight: bold; }
.log-cmd { color: #fbbf24; }
.log-muted { color: var(--text-secondary); }

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulsePurple {
  0% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(167, 139, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0); }
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  14% { transform: scale(1.18); }
  28% { transform: scale(1); }
  42% { transform: scale(1.18); }
  70% { transform: scale(1); }
}

/* Responsive Design & Mobile Alignment Adjustments */
@media (max-width: 991px) {
  .app-container {
    padding: 1rem 1rem 3rem 1rem;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .test-utility-bar {
    padding: 0.5rem 1rem;
  }
  
  .utility-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .utility-actions {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .product-gallery {
    height: 360px;
    border-radius: 16px;
  }
  
  .watch-container {
    transform: scale(0.85);
  }
  
  .product-details {
    align-items: center;
    text-align: center;
  }
  
  .price-container {
    justify-content: center;
  }
  
  .btn-primary {
    align-self: center;
    width: 100%;
    max-width: 320px;
  }
  
  .success-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-section h1 {
    font-size: 1.15rem;
  }
  
  .status-badge .status-text {
    display: none;
  }
  
  .status-badge {
    padding: 0.35rem 0.5rem;
  }
  
  .watch-container {
    transform: scale(0.75);
  }
  
  .spec-grid {
    gap: 0.75rem;
  }
  
  input {
    font-size: 16px; /* Prevents auto-zoom on iOS Safari */
  }
  
  .modal-card {
    border-radius: 16px;
  }
  
  .modal-body {
    padding: 1.25rem 1rem;
  }
}
