/* ============================================================
   WATCH PAGE STYLES
   ============================================================ */

/* ============================================================
   WATCH VISION SECTION
   ============================================================ */
.watch-vision {
  background: var(--bg-elevated);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.watch-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.watch-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.watch-mockup-svg {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}

.watch-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.watch-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.watch-feature:hover {
  border-color: rgba(212,175,55,0.2);
}

.watch-feature .f-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  padding-top: 0.25rem;
  min-width: 24px;
}

.watch-feature h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.watch-feature p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--text-tertiary);
}

/* ============================================================
   WATCH RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .watch-vision-grid {
    grid-template-columns: 1fr;
  }
}
