/* ============================================
   SHOP page styles
   ============================================ */

.shop-hero {
  padding: clamp(64px, 7vw, 112px) 0 clamp(32px, 4vw, 56px);
  text-align: center;
}

.shop-hero .eyebrow { justify-content: center; }

.shop-hero h1 {
  font-size: clamp(44px, 5.4vw, 76px);
  letter-spacing: -0.032em;
  line-height: 1;
  margin-top: 20px;
}

.shop-hero .lead {
  margin: 22px auto 0;
  font-size: clamp(17px, 1.4vw, 20px);
}

/* Brand wall */
.brand-wall {
  padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 96px);
}

.brand-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.brand-head h2 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.018em;
}

.brand-head .meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-head .meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s var(--ease) infinite;
}

/* Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-pure);
  padding: 0;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-pure), rgba(255,255,255,0));
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-pure), rgba(255,255,255,0));
}

.marquee-row {
  display: flex;
  gap: 0;
  animation: marquee 60s linear infinite;
  width: max-content;
}

.marquee:hover .marquee-row { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-tile {
  height: 96px;
  min-width: 200px;
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  flex-shrink: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  position: relative;
  background: var(--bg-pure);
  transition: background 0.2s var(--ease);
}

.brand-tile:hover { background: var(--green-tint); }

/* Different type treatments per brand — original wordmarks, not logos */
.bt-tefal     { font-family: var(--font); font-weight: 700; font-style: italic; letter-spacing: -0.04em; }
.bt-delonghi  { font-family: var(--font); font-weight: 300; letter-spacing: 0.08em; text-transform: uppercase; font-size: 18px; }
.bt-philips   { font-family: var(--font); font-weight: 500; letter-spacing: -0.01em; }
.bt-nespresso { font-family: var(--font); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.bt-braun     { font-family: var(--font); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; font-size: 20px; }
.bt-lenovo    { font-family: var(--font); font-weight: 700; letter-spacing: -0.02em; }
.bt-logitech  { font-family: var(--font); font-weight: 400; letter-spacing: -0.01em; }
.bt-skullcandy{ font-family: var(--mono); font-weight: 500; letter-spacing: 0.04em; text-transform: lowercase; font-size: 19px; }
.bt-elgato    { font-family: var(--font); font-weight: 600; letter-spacing: -0.02em; }
.bt-gopro     { font-family: var(--font); font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; font-size: 20px; }
.bt-dji       { font-family: var(--font); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.bt-mega      { font-family: var(--font); font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; }
.bt-instax    { font-family: var(--font); font-weight: 500; letter-spacing: 0.02em; font-style: italic; }
.bt-playmobil { font-family: var(--font); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; font-size: 18px; }
.bt-oralb     { font-family: var(--font); font-weight: 500; letter-spacing: -0.01em; }
.bt-corsair   { font-family: var(--font); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 16px; }
.bt-asus      { font-family: var(--font); font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; font-size: 22px; }
.bt-tomtom    { font-family: var(--font); font-weight: 600; letter-spacing: -0.02em; }

.brand-tile .tm {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-4);
  margin-left: 4px;
  vertical-align: top;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
}

.brand-foot {
  margin-top: 32px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}

.brand-foot strong {
  color: var(--ink);
  font-weight: 500;
}

/* Login section */
.login-wrap {
  padding: clamp(56px, 7vw, 112px) 0 clamp(80px, 9vw, 140px);
  background: var(--bg-tint);
}

.login-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  background: var(--bg-pure);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(20,22,20,0.18);
}

.login-info {
  padding: 48px 44px;
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.login-info::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63,143,111,0.32), transparent 70%);
  bottom: -80px;
  right: -80px;
}

.login-info .eyebrow { color: var(--green); position: relative; }
.login-info .eyebrow::before { background: var(--green); }

.login-info h2 {
  color: white;
  font-size: clamp(28px, 2.8vw, 38px);
  letter-spacing: -0.022em;
  line-height: 1.1;
  font-weight: 500;
  position: relative;
}

.login-info p {
  color: #9b9f9b;
  font-size: 15px;
  line-height: 1.6;
  max-width: 36ch;
  position: relative;
}

.login-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.login-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #C9CCC9;
}

.login-info ul svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 3px;
}

.login-form-wrap {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.login-form-wrap h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.018em;
}

.login-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-form-wrap .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.login-form-wrap .row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  cursor: pointer;
}

.login-form-wrap .row label input { accent-color: var(--green); }

.login-form-wrap .row a {
  color: var(--green-dark);
  font-weight: 500;
}

.login-form-wrap .row a:hover { text-decoration: underline; }

.login-form-wrap .btn { width: 100%; padding: 16px; font-size: 15px; }

.login-note {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.login-note > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.login-note strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
}

.login-note::before {
  content: "i";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-weight: 500;
}

.login-note.error { color: #B14437; background: #FCEFEC; border-color: #F2D3CC; }
.login-note.error::before { background: #C8553D; }

.login-note a {
  color: var(--green-dark);
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .login-shell { grid-template-columns: 1fr; }
}

/* Channel strip below */
.channels {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.channel {
  background: var(--bg-pure);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.channel .ic {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--green-tint);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel .ic svg { width: 18px; height: 18px; }

.channel strong {
  display: block;
  font-weight: 500;
  font-size: 14.5px;
}

.channel span {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

@media (max-width: 720px) {
  .channels { grid-template-columns: 1fr; }
}
