/* =====================================================
   NBE – watches.html  (watches.css)
   ===================================================== */
:root {
  --nbe-green:      #2e7d32;
  --nbe-green-dark: #1b5e20;
  --nbe-green-light:#e8f5e9;
  --text-dark:      #1a1a1a;
  --text-mid:       #444;
  --border:         #d0d0d0;
  --card-shadow:    0 4px 16px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; margin: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Arial, sans-serif;
  background: #f5f5f5;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
}

/* ── header ── */
.top-header {
  background: #fff;
  padding: 18px 0 0;
  border-bottom: 3px solid var(--nbe-green);
}

.top-header__inner {
  display: flex;
  justify-content: center;
  padding-bottom: 14px;
}

.top-logo {
  width: clamp(180px, 50vw, 240px);
  height: auto;
  object-fit: contain;
}

.top-header__separator { display: none; }

/* ── page ── */
.page { flex: 1; padding: 18px 12px 0; }

/* ── hero ── */
.hero {
  display: flex;
  justify-content: center;
  margin: 0 0 20px;
}

.hero-banner {
  width: min(680px, 96vw);
  background: var(--nbe-green);
  border: 2px solid var(--nbe-green-dark);
  border-radius: 16px;
  padding: 20px 20px 18px;
  text-align: center;
  color: #fff;
}

.hero-banner__title {
  font-size: clamp(1rem, 4vw, 1.4rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.hero-banner__subtitle {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  font-weight: 500;
  opacity: 0.9;
}

/* ── cards ── */
.cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 8px 24px;
}

.card-link {
  width: min(640px, 96vw);
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link,
.card-link:visited,
.card-link:hover,
.card-link:active { text-decoration: none; color: inherit; }

.card {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px 16px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  animation: watchCardEnter 0.5s ease both;
}

.card-link:nth-child(2) .card { animation-delay: 0.06s; }
.card-link:nth-child(3) .card { animation-delay: 0.12s; }
.card-link:nth-child(4) .card { animation-delay: 0.18s; }
.card-link:nth-child(5) .card { animation-delay: 0.24s; }
.card-link:nth-child(6) .card { animation-delay: 0.30s; }

.card-link:hover .card,
.card-link:focus-visible .card {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 14px 30px rgba(46,125,50,0.15);
  border-color: var(--nbe-green);
}

.card-link:focus-visible { outline: none; }

.card__img {
  width: clamp(140px, 42vw, 175px);
  height: auto;
  object-fit: contain;
  margin: 6px auto 10px;
  display: block;
  border-radius: 12px;
}

.card__title {
  margin: 0 0 10px;
  font-size: clamp(1rem, 3.8vw, 1.3rem);
  font-weight: 800;
  color: var(--nbe-green);
}

.card__desc {
  margin: 0 auto;
  max-width: 520px;
  font-size: clamp(0.88rem, 3vw, 1rem);
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── footer ── */
.footer {
  background: var(--nbe-green);
  padding: 16px 14px;
  text-align: center;
}

.footer__text {
  color: #fff;
  font-size: clamp(0.88rem, 2.8vw, 1.05rem);
  font-weight: 500;
  line-height: 1.4;
}

@keyframes watchCardEnter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 420px) {
  .top-logo { width: 150px; }
  .card__img { width: clamp(120px, 38vw, 150px); }
  .card__title { font-size: clamp(0.95rem, 3.8vw, 1.15rem); }
  .card__desc  { font-size: 0.88rem; }
  .hero-banner { padding: 14px 12px; }
}
