@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

/* ---------- tokens ---------- */
:root {
  --ink: #14150f;
  --ink-soft: #4a4b42;
  --paper: #edeeea;
  --paper-raised: #ffffff;
  --line: #d7d5cb;
  --moss: #4b5a3f;
  --moss-deep: #333d2b;
  --moss-light: #aebf8e;
  --rust: #9c4221;
  --stone: #86847a;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-pill: 999px;
  --shadow-card: 0 1px 2px rgba(20,21,15,0.05), 0 10px 28px rgba(20,21,15,0.06);
  --font-display: 'Archivo', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--moss); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

.eyebrow-free { display: none; } /* placeholder, unused on purpose */

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--moss-deep); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237,238,234,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a { padding: 6px 0; border-bottom: 1px solid transparent; }
.nav-links a:hover, .nav-links a.active { border-color: var(--ink); }
.nav-tools { display: flex; align-items: center; gap: 14px; }
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 16px;
  background: var(--paper-raised);
  min-width: 210px;
}
.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
}
.search-box button { background: none; border: none; display: flex; padding: 4px; }
.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--paper-raised);
}
.icon-btn:hover { border-color: var(--ink); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--moss);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  display: none;
}
.menu-toggle { display: none; }
.mobile-nav { display: none; }

@media (max-width: 900px) {
  .search-box { display: none; }
  .nav-links { display: none; }
  .menu-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--radius-pill);
    border: 1px solid var(--line); background: var(--paper-raised);
  }
  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-top: 1px solid var(--line);
  }
  .mobile-nav--open { max-height: 420px; }
  .mobile-nav .wrap { padding-top: 16px; padding-bottom: 20px; display: flex; flex-direction: column; gap: 14px; }
  .mobile-nav a { font-size: 16px; font-weight: 500; }
  .mobile-nav form { margin-top: 6px; }
}

/* ---------- hero ---------- */
.hero {
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 800;
}
.hero p.lead {
  margin-top: 22px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  height: 420px;
}
.hero-visual .cover {
  position: absolute;
  width: 240px;
  box-shadow: var(--shadow-card);
}
.hero-visual .cover:nth-child(1) { top: 10px; left: 60px; transform: rotate(-6deg); z-index: 1; }
.hero-visual .cover:nth-child(2) { top: 90px; left: 240px; transform: rotate(4deg); z-index: 2; }
.hero-visual .cover:nth-child(3) { top: 200px; left: 20px; transform: rotate(3deg); z-index: 3; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 44px 0 56px; text-align: left; }
  .hero-visual { height: 300px; margin-top: 12px; }
  .hero-visual .cover { width: 180px; }
  .hero-visual .cover:nth-child(1) { left: 10px; }
  .hero-visual .cover:nth-child(2) { left: 130px; top: 60px; }
  .hero-visual .cover:nth-child(3) { left: 50px; top: 150px; }
}

/* ---------- covers (product artwork system) ---------- */
.cover {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-s);
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.cover-cat {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.18);
}
.cover-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
}
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cover-cat, .cover-title { position: relative; z-index: 1; }

.cover--fitness { background: linear-gradient(155deg, #333d2b, #4b5a3f 60%, #6d7c56); }
.cover--fitness::before { background: radial-gradient(circle at 78% 20%, rgba(174,191,142,0.55), transparent 55%); }
.cover--food-nutrition { background: linear-gradient(155deg, #5a2f1a, #9c4221 60%, #c06b45); }
.cover--food-nutrition::before { background: repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 22px); }
.cover--style { background: linear-gradient(155deg, #14150f, #34352c 60%, #55564a); }
.cover--style::before { background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%); }
.cover--self-improvement { background: linear-gradient(155deg, #2b3a3d, #3f5459 60%, #6b8489); }
.cover--self-improvement::before { background: linear-gradient(to top, rgba(255,255,255,0.16), transparent 60%); }

/* ---------- sections ---------- */
.section { padding: 64px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section-head h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; }
.section-head p { color: var(--ink-soft); margin-top: 8px; max-width: 50ch; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 180px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.cat-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.cat-card h3 { font-size: 19px; font-weight: 700; }
.cat-card p { color: var(--ink-soft); font-size: 14.5px; }
.cat-card .cat-arrow { margin-top: auto; font-size: 14px; font-weight: 600; }

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ---------- product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1040px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.product-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.product-card .cover { aspect-ratio: 4/5; border-radius: 0; }
.product-card .badge-row {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
}
.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.9);
  color: var(--ink);
}
.badge-sale { background: var(--rust); color: #fff; }
.product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-cat { font-size: 12.5px; color: var(--stone); font-weight: 500; }
.product-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1.3; }
.product-desc { font-size: 13.5px; color: var(--ink-soft); }
.product-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-soft); }
.stars { color: var(--rust); letter-spacing: 1px; font-size: 13px; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.price-now { font-weight: 700; font-size: 17px; }
.price-old { font-size: 13px; color: var(--stone); text-decoration: line-through; }
.product-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 6px; }
.product-actions .btn { flex: 1; padding: 10px 14px; font-size: 13.5px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding: 56px 0 28px; margin-top: 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-brand .logo { color: var(--paper); }
.footer-brand p { margin-top: 12px; color: rgba(237,238,234,0.65); font-size: 14px; max-width: 32ch; }
.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 14px; color: rgba(237,238,234,0.55); }
.footer-col a { display: block; font-size: 14.5px; padding: 5px 0; color: rgba(237,238,234,0.9); }
.footer-col a:hover { color: var(--moss-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 13px; color: rgba(237,238,234,0.55); flex-wrap: wrap; gap: 12px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- toast ---------- */
.vyro-toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
  box-shadow: var(--shadow-card);
}
.vyro-toast--visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- shop page ---------- */
.shop-header { padding: 48px 0 28px; border-bottom: 1px solid var(--line); }
.shop-header h1 { font-size: clamp(30px, 4vw, 44px); }
.shop-header p { color: var(--ink-soft); margin-top: 10px; }

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--paper-raised);
  font-size: 13.5px;
  font-weight: 500;
}
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.toolbar-controls { display: flex; gap: 10px; align-items: center; }
.select {
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--paper-raised);
  font-size: 13.5px;
  font-family: var(--font-body);
}
.results-count { font-size: 13.5px; color: var(--stone); }
.empty-state { padding: 60px 0; text-align: center; color: var(--ink-soft); }

/* ---------- product page ---------- */
.product-hero { padding: 48px 0 20px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; }
.product-hero .cover { aspect-ratio: 4/5; border-radius: var(--radius-m); box-shadow: var(--shadow-card); }
.crumb { font-size: 13px; color: var(--stone); margin-bottom: 18px; }
.crumb a:hover { color: var(--ink); }
.product-title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin-top: 10px; }
.meta-row { display: flex; gap: 16px; align-items: center; margin-top: 14px; flex-wrap: wrap; }
.price-block { display: flex; align-items: baseline; gap: 12px; margin-top: 20px; }
.price-block .price-now { font-size: 30px; }
.price-block .price-old { font-size: 16px; }
.digital-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--moss-deep); margin-top: 14px; font-weight: 500;
}
.product-cta-row { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.product-cta-row .btn { flex: 1; min-width: 160px; }
.info-list { margin-top: 26px; display: flex; flex-direction: column; gap: 8px; }
.info-list div { display: flex; justify-content: space-between; font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.info-list span:first-child { color: var(--stone); }

@media (max-width: 900px) {
  .product-hero { grid-template-columns: 1fr; }
}

.tabs { margin-top: 56px; border-bottom: 1px solid var(--line); display: flex; gap: 8px; overflow-x: auto; }
.tab-btn {
  padding: 14px 6px; margin-right: 22px; background: none; border: none; font-size: 15px;
  font-weight: 600; color: var(--stone); border-bottom: 2px solid transparent; white-space: nowrap;
}
.tab-btn.active { color: var(--ink); border-color: var(--ink); }
.tab-panel { display: none; padding: 32px 0 8px; max-width: 760px; }
.tab-panel.active { display: block; }
.tab-panel ul { margin: 0; padding-left: 20px; }
.tab-panel li { margin-bottom: 8px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 100%; }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-tile { aspect-ratio: 4/5; border-radius: var(--radius-s); }

.review-card { border: 1px solid var(--line); border-radius: var(--radius-m); padding: 18px 20px; background: var(--paper-raised); margin-bottom: 14px; }
.review-head { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.review-card p { font-size: 14.5px; color: var(--ink-soft); }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 16px 0; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding-bottom: 16px; color: var(--ink-soft); font-size: 14.5px; }

.related-heading { margin-top: 64px; margin-bottom: 24px; font-size: 22px; font-weight: 700; }

/* ---------- notice banner (used on cart/checkout placeholders) ---------- */
.notice {
  border: 1px dashed var(--line);
  border-radius: var(--radius-m);
  padding: 18px 20px;
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--paper-raised);
}

/* =========================================
   VYRO — Premium Hero Upgrade
   ========================================= */

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 0 0 26px;
  font-weight: 800;
}

.hero h1 span {
  opacity: 0.55;
}

.hero .lead {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.55;
}

.hero-note span {
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

/* Give the product covers a more premium layered feel */
.hero-visual .cover {
  position: absolute;
  width: 230px;
  min-height: 310px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-visual .cover:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.22);
}

.hero-visual .cover:nth-child(1) {
  left: 4%;
  top: 80px;
  transform: rotate(-8deg);
  z-index: 1;
}

.hero-visual .cover:nth-child(2) {
  left: 27%;
  top: 15px;
  transform: rotate(2deg);
  z-index: 3;
}

.hero-visual .cover:nth-child(3) {
  left: 50%;
  top: 95px;
  transform: rotate(8deg);
  z-index: 2;
}

/* Mobile */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero .lead {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 390px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-visual .cover {
    width: 180px;
    min-height: 250px;
  }

  .hero-visual .cover:nth-child(1) {
    left: 0;
    top: 70px;
  }

  .hero-visual .cover:nth-child(2) {
    left: 25%;
    top: 0;
  }

  .hero-visual .cover:nth-child(3) {
    left: 50%;
    top: 75px;
  }
}

@media (max-width: 520px) {
  .hero-visual {
    min-height: 330px;
  }

  .hero-visual .cover {
    width: 145px;
    min-height: 210px;
  }

  .hero-visual .cover:nth-child(1) {
    left: 0;
  }

  .hero-visual .cover:nth-child(2) {
    left: 24%;
  }

  .hero-visual .cover:nth-child(3) {
    left: 48%;
  }

  .hero-note {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.hero-image-cover {
  overflow: hidden;
  padding: 0 !important;
  background: none !important;
}

.hero-image-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-image-cover {
  overflow: hidden;
  padding: 0 !important;
}

.product-image-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* VYRO account */
.auth-page { min-height: 68vh; display: grid; place-items: center; padding-top: 72px; padding-bottom: 72px; }
.auth-card { width: min(100%, 560px); background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(24px, 5vw, 44px); }
.auth-intro h1, .account-card h1 { margin: 12px 0 12px; font-size: clamp(36px, 7vw, 56px); line-height: .98; letter-spacing: -0.04em; }
.auth-intro p, .account-card p { color: var(--ink-soft); line-height: 1.6; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 28px 0 18px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; }
.auth-tab { border: 0; border-radius: 999px; padding: 11px 14px; background: transparent; color: var(--ink-soft); font: inherit; font-weight: 700; cursor: pointer; }
.auth-tab.active { background: var(--ink); color: var(--paper); }
.auth-form { display: grid; gap: 16px; }
.auth-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 700; }
.auth-form input { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--ink); padding: 13px 14px; font: inherit; outline: none; }
.auth-form input:focus { border-color: var(--ink); }
.auth-status { min-height: 22px; margin-bottom: 12px; font-size: 14px; color: var(--ink-soft); }
.auth-status.error { color: #9e2d2d; }
.auth-status.success { color: #23623a; }
.auth-help { margin: 0; text-align: center; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }
.auth-account-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
@media (max-width: 800px) { .auth-page { padding-top: 42px; padding-bottom: 42px; } }
