/* Base */
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#0b0c0f;
  color:#f1f1f1;
  line-height:1.6;
}

.container{
  max-width:1000px;
  margin:0 auto;
  padding:40px 20px;
}

/* Header / Nav */
.header{
  border-bottom:1px solid #222;
}

.header__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.brand{
  font-weight:700;
  font-size:1.1rem;
}

.brandlink{
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

.nav{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}

.nav a{
  color:#ccc;
  text-decoration:none;
}

.nav a:hover{ color:#fff; }

.nav a.is-active{ color:#fff; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border:1px solid #555;
  border-radius:6px;
  color:#f1f1f1;
  text-decoration:none;
  background:transparent;
}

.btn:hover{
  border-color:#fff;
}

.btn:focus-visible{
  outline:2px solid #fff;
  outline-offset:3px;
}

/* Hero / Sections */
.hero{
  padding:80px 0;
}

.hero--compact{
  padding:56px 0;
}

.section{
  border-top:1px solid #222;
}

.section.alt{
  background:#111;
}

.footer{
  border-top:1px solid #222;
  text-align:center;
}

/* Language selector */
.lang{
  margin-left:28px;
  opacity:.85;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.9rem;
  color:#aaa;
  white-space:nowrap;
}

.lang__item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#aaa;
  text-decoration:none;
}

.lang__item:hover{ color:#fff; }

.lang__item.is-active{ color:#fff; }

.lang__sep{
  color:#666;
  user-select:none;
}

.lang__icon{
  width:16px;
  height:16px;
  display:block;
  opacity:.95;
}

/* Chips (filters) */
.chips{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.chip{
  border:1px solid #2a2a2a;
  padding:6px 10px;
  border-radius:999px;
  color:#aaa;
  background:#0e0f12;
  font-size:.9rem;
}

.chip.is-active{
  color:#fff;
  border-color:#444;
}

/* Collections grid */
.gridcards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

/* Product card */
.pcard{
  border:1px solid #222;
  background:#0e0f12;
  border-radius:10px;
  overflow:hidden;
}

.pcard__img{
  height:180px;
  background:linear-gradient(135deg,#111,#0b0c0f);
  border-bottom:1px solid #222;
}

.pcard__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.pcard__body{
  padding:18px;
}

.pcard__title{
  margin:0 0 8px;
  font-size:1.15rem;
}

.pcard__meta{
  margin:0 0 10px;
  color:#aaa;
  font-size:.95rem;
}

.pcard__desc{
  margin:0 0 12px;
  color:#ddd;
  line-height:1.65;
  max-width:60ch;
}

.pcard__specs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}

.spec{
  color:#aaa;
  border:1px solid #2a2a2a;
  background:#0b0c0f;
  padding:6px 10px;
  border-radius:999px;
  font-size:.85rem;
}

.pcard__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Small enhancement: CTA border emphasis */
.pcard__cta .btn{
  border-color:#666;
}

.pcard__cta .btn:hover{
  border-color:#fff;
}

/* Responsive */
@media (max-width: 900px){
  .gridcards{ grid-template-columns:1fr; }
  .container{ padding:28px 16px; }
}
/* Typography scale */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 0 0.6em 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  line-height: 1.25;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.3;
}

h4 {
  font-size: 1rem;
  line-height: 1.35;
}

/* Paragraphs */
p {
  margin: 0 0 1em 0;
  color: #e2e2e2;
}

p strong {
  color: #ffffff;
  font-weight: 600;
}

/* Meta / secondary text */
.small,
.meta {
  font-size: 0.9rem;
  color: #aaa;
}

/* Lists */
ul, ol {
  margin: 0 0 1em 1.2em;
  padding: 0;
}

li {
  margin-bottom: 0.4em;
}

/* Links inside content */
main a:not(.btn) {
  color: #ddd;
  text-decoration: underline;
  text-decoration-color: #444;
  text-underline-offset: 3px;
}

main a:not(.btn):hover {
  color: #fff;
  text-decoration-color: #777;
}

/* Section titles spacing */
.section h2 {
  margin-bottom: 0.4em;
}

.section p {
  max-width: 70ch;
}

/* Hero text refinement */
.hero h1 {
  max-width: 18ch;
}

.hero p {
  font-size: 1.05rem;
  max-width: 60ch;
  color: #d6d6d6;
}
