@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --blue: #00B9F2;
  --blue-dark: #0095C8;
  --blue-light: #E5F7FD;
  --gray: #7F8084;
  --gray-light: #F5F5F6;
  --orange: #EE7F41;
  --orange-light: #FEF1E8;
  --yellow: #FFD65C;
  --teal: #35BCA8;
  --teal-light: #E8F9F7;
  --white: #FFFFFF;
  --dark: #18181B;
  --text: #2C2C30;
  --muted: #8E8E93;
  --border: #EBEBEB;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 64px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 21px; font-weight: 800; letter-spacing: -0.5px; color: var(--dark);
  text-decoration: none;
}
.logo-ring {
  width: 32px; height: 32px; border-radius: 50%; border: 2.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-right { display: flex; gap: 12px; align-items: center; }
.nav-link-btn {
  background: none; border: none; font-family: 'Barlow',sans-serif;
  font-size: 14px; font-weight: 500; color: var(--gray); cursor: pointer;
  padding: 8px 14px; border-radius: 8px; transition: color 0.2s;
  text-decoration: none;
}
.nav-link-btn:hover { color: var(--dark); }
.nav-cta {
  background: var(--blue); color: #fff; border: none;
  padding: 10px 24px; border-radius: 100px; font-family: 'Barlow',sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* BUTTONS */
.btn-primary {
  background: var(--blue); color: #fff; border: none;
  padding: 14px 30px; border-radius: 100px; font-family: 'Barlow',sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,185,242,0.25); }
.btn-outline {
  background: none; border: 1.5px solid var(--border); color: var(--dark);
  padding: 13px 26px; border-radius: 100px; font-family: 'Barlow',sans-serif;
  font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* EYEBROW */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--blue); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content:''; display:block; width:24px; height:1px; background:var(--blue); }

/* SECTION TITLE */
.sec-title {
  font-size: clamp(32px,4vw,50px); font-weight: 800;
  letter-spacing: -1.5px; color: var(--dark); line-height: 1.1;
}
.sec-sub {
  font-size: 17px; font-weight: 300; color: var(--muted); line-height: 1.7; margin-top: 14px;
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 60px 64px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 50px;
}
.footer-brand-name { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-left: 10px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 14px; max-width: 220px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.5); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 10px; }
.soc {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
}
.soc:hover { border-color: var(--blue); color: var(--blue); }

/* PAGE WRAP */
.page-wrap { padding-top: 80px; }

/* CARDS */
.chair-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; transition: all 0.25s; cursor: pointer; text-decoration: none; display: block; color: inherit;
}
.chair-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.09); border-color: transparent; }
.chair-card-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
}
.chair-card-body { padding: 20px 22px 22px; }
.chair-card-tag {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 10px;
}
.chair-card-name { font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -0.3px; }
.chair-card-desc { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.chair-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border);
}
.price { font-size: 20px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.price span { font-size: 13px; font-weight: 400; color: var(--muted); }
.rent-btn {
  background: var(--dark); color: #fff; border: none;
  padding: 9px 18px; border-radius: 100px; font-family: 'Barlow',sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.rent-btn:hover { background: var(--blue); }

/* PARALLELOGRAM ACCENT */
.para-accent {
  position: absolute; width: 5px; height: 60px;
  background: var(--orange); transform: skewY(-12deg); opacity: 0.4;
}

/* BADGE */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 600;
}
.badge-green { background: var(--teal-light); color: var(--teal); }
.badge-orange { background: var(--orange-light); color: var(--orange); }
.badge-blue { background: var(--blue-light); color: var(--blue); }
