:root {
  color-scheme: dark;
  --bg: #050607;
  --surface: #0d1013;
  --surface-2: #141820;
  --panel: rgba(15, 18, 23, 0.88);
  --text: #f4f6f1;
  --muted: #a8aea2;
  --green: #7fbd22;
  --green-dark: #4f7c14;
  --purple: #6f45bd;
  --purple-dark: #36205f;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(127, 189, 34, 0.12), transparent 24rem),
    radial-gradient(circle at 86% 8%, rgba(111, 69, 189, 0.14), transparent 28rem),
    linear-gradient(180deg, #050607 0%, #0a0d10 46%, #050607 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.cursor-glow {
  position: fixed;
  left: var(--x, 50vw);
  top: var(--y, 50vh);
  z-index: 0;
  width: 22rem;
  height: 22rem;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(127, 189, 34, 0.08), transparent 70%);
}

.site-header {
  position: fixed;
  left: 50%;
  top: 18px;
  z-index: 30;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 10, 12, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.static-header {
  position: sticky;
  left: auto;
  top: 16px;
  margin: 16px auto 0;
  transform: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(127, 189, 34, 0.42);
  border-radius: 8px;
  background: rgba(127, 189, 34, 0.08);
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand strong,
.hero h1,
.section-heading h2,
.cart-head h2,
.admin-login h1,
.admin-topbar h1,
.admin-card h3,
.product-form h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links,
.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.cart-trigger {
  border-radius: 8px;
  color: rgba(244, 246, 241, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 12px 14px;
}

.nav-links a:hover,
.cart-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(127, 189, 34, 0.42);
  background: rgba(127, 189, 34, 0.08);
}

.cart-trigger span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #071006;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.58fr);
  gap: 34px;
  min-height: 90vh;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 68px;
  isolation: isolate;
}

.hero-minimal {
  display: grid;
  min-height: 92vh;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  perspective: 1100px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.96) brightness(0.7);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.52) 54%, rgba(5, 6, 7, 0.84)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.16), rgba(5, 6, 7, 0.98) 96%);
}

.hero-content {
  z-index: 3;
  max-width: 720px;
}

.hero-logo {
  display: block;
  width: min(500px, 92vw);
  max-height: 220px;
  object-fit: contain;
  object-position: left center;
  margin: -18px 0 14px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.4rem, 5vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: none;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(244, 246, 241, 0.78);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.hero-mascot {
  position: relative;
  z-index: 2;
  display: grid;
  align-self: end;
  justify-self: end;
  width: min(370px, 35vw);
  min-width: 270px;
  margin: 0 0 -36px;
  place-items: center;
}

.hero-small-link {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  top: 112px;
  z-index: 4;
  border: 1px solid rgba(127, 189, 34, 0.42);
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.72);
  padding: 10px 16px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-ufo {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(920px, 88vw);
  margin: 76px 0 0;
  place-items: center;
  transform:
    translate3d(var(--ufo-x, 0px), var(--ufo-y, 0px), 0)
    rotateX(var(--ufo-rx, 0deg))
    rotateY(var(--ufo-ry, 0deg))
    rotateZ(var(--ufo-rz, -2deg));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
  animation: ufoFloat 6s ease-in-out infinite;
}

.hero-ufo img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.58));
}

.hero-ufo .ufo-shadow {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 2%;
  z-index: 1;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(16px);
  transform: translateZ(-80px) rotateX(64deg);
}

.hero-ufo .ufo-beam {
  position: absolute;
  inset: 30% 24% -8%;
  z-index: 2;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(127, 189, 34, 0.2), rgba(111, 69, 189, 0.08), transparent 72%);
  filter: blur(14px);
  transform: translateZ(-40px);
}

.hero-mascot img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.68));
}

.ufo-beam {
  position: absolute;
  inset: 10% 8% 0;
  z-index: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(127, 189, 34, 0.14), transparent 76%);
  filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn,
.icon-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn {
  padding: 0 20px;
}

.btn svg,
.icon-link svg,
.icon-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--green);
  color: #071006;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.btn:hover,
.icon-link:hover {
  transform: translateY(-2px);
}

.category-showcase,
.shop-section,
.checkout-section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.category-showcase {
  padding: 62px 0 28px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.section-heading h2,
.checkout-section h2,
.cart-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-tile {
  display: grid;
  min-height: 130px;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(127, 189, 34, 0.12), rgba(111, 69, 189, 0.08)),
    var(--surface);
  text-align: left;
}

.category-tile strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.4rem;
}

.category-tile span {
  color: var(--muted);
}

.shop-section,
.checkout-section {
  padding: 40px 0 84px;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 1.7fr minmax(170px, 0.5fr);
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(244, 246, 241, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  outline: none;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(127, 189, 34, 0.62);
  box-shadow: 0 0 0 3px rgba(127, 189, 34, 0.1);
}

select option {
  color: #08110b;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0 14px;
  font-size: 0.86rem;
  font-weight: 900;
}

.category-tabs button.is-active {
  border-color: rgba(127, 189, 34, 0.62);
  background: rgba(127, 189, 34, 0.14);
  color: var(--green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 1100px;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(127, 189, 34, 0.44);
}

.product-media {
  display: grid;
  min-height: 238px;
  place-items: center;
  padding: 24px;
  background: linear-gradient(145deg, rgba(127, 189, 34, 0.08), rgba(111, 69, 189, 0.08));
}

.product-media img {
  width: 100%;
  max-height: 205px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stock {
  color: var(--green);
}

.product-card h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.45rem;
  line-height: 1.04;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 900;
}

.product-buy button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #071006;
  padding: 0 14px;
  font-weight: 900;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.checkout-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 36px;
  align-items: center;
}

.checkout-section p,
.checkout-note {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 72px;
}

.page-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.page-heading h1,
.legal-page h1 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
}

.page-heading p,
.legal-page p {
  color: var(--muted);
  line-height: 1.75;
}

.checkout-layout,
.account-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.checkout-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.checkout-card h2 {
  margin: 0 0 4px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.6rem;
}

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-options label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.04);
}

.payment-options input {
  width: auto;
  height: auto;
}

.checkout-items {
  display: grid;
  gap: 10px;
}

.integration-card,
.admin-card,
.product-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.integration-card span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  justify-items: end;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  transition: background 180ms ease;
}

.cart-drawer.is-open {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.56);
}

.cart-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(460px, 100%);
  height: 100%;
  padding: 22px;
  border-left: 1px solid var(--line);
  background: #080a0d;
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.48);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
}

.cart-head h2 {
  font-size: 2rem;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding-right: 4px;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.cart-item img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.cart-item h3 {
  margin: 0;
  font-size: 0.98rem;
}

.cart-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty-row button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.qty-row strong {
  min-width: 24px;
  text-align: center;
}

.checkout-form {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cart-summary span {
  color: var(--muted);
}

.cart-summary strong {
  color: var(--green);
  font-size: 1.35rem;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 24px 0 42px;
  color: rgba(244, 246, 241, 0.58);
  font-size: 0.92rem;
  text-align: center;
}

.trust-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-row span {
  border: 1px solid rgba(127, 189, 34, 0.34);
  border-radius: 999px;
  background: rgba(127, 189, 34, 0.08);
  color: rgba(244, 246, 241, 0.84);
  padding: 8px 12px;
  font-weight: 800;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--green);
}

.admin-shell {
  min-height: 100vh;
}

.admin-login {
  display: grid;
  width: min(520px, calc(100% - 32px));
  min-height: 100vh;
  align-content: center;
  gap: 16px;
  margin: 0 auto;
  padding: 48px 0;
}

.admin-login img {
  width: min(280px, 80vw);
  margin-bottom: 12px;
}

.admin-login h1 {
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 0.95;
}

.auth-form,
.product-form,
.site-form {
  display: grid;
  gap: 14px;
}

.product-form {
  grid-template-columns: 1fr 1fr;
}

.product-form h3,
.admin-card h3 {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.full {
  grid-column: 1 / -1;
}

.admin-app {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  height: 100vh;
  align-content: start;
  gap: 22px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #080a0d;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  padding: 0 14px;
  font-weight: 900;
}

.admin-nav button.is-active {
  border-color: rgba(127, 189, 34, 0.55);
  background: rgba(127, 189, 34, 0.12);
  color: var(--green);
}

.admin-content {
  padding: 34px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: block;
}

.admin-list,
.user-list {
  display: grid;
  gap: 10px;
}

.user-row,
.admin-product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.user-row strong,
.admin-product-row strong {
  display: block;
}

.user-row span,
.admin-product-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.user-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 10px 0 0;
}

.user-data-grid div {
  min-width: 0;
}

.user-data-grid dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.user-data-grid dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 0.88rem;
}

.role-pill {
  border: 1px solid rgba(127, 189, 34, 0.42);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .checkout-section,
  .checkout-layout,
  .account-layout,
  .admin-app,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 980px;
    align-items: start;
    padding-top: 132px;
  }

  .hero-minimal {
    min-height: 780px;
    align-items: center;
  }

  .user-data-grid {
    grid-template-columns: 1fr;
  }

  .hero-small-link {
    left: 24px;
    top: 104px;
  }

  .hero-ufo {
    width: min(760px, 94vw);
  }

  .hero-mascot {
    justify-self: center;
    width: min(430px, 74vw);
    margin-top: 18px;
    margin-bottom: -40px;
  }

  .shop-toolbar,
  .product-grid,
  .category-tiles {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .brand small {
    display: none;
  }

  .cart-trigger {
    padding: 10px;
    font-size: 0;
  }

  .cart-trigger::before {
    font-size: 0.9rem;
    content: "Carrinho";
  }

  .hero {
    min-height: 900px;
    padding-inline: 16px;
  }

  .hero-minimal {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
  }

  .hero-logo {
    width: 100%;
    max-height: 190px;
  }

  .hero-mascot {
    width: min(340px, 84vw);
    min-width: 0;
  }

  .hero-ufo {
    width: min(560px, 108vw);
    margin-top: 68px;
  }

  .hero-actions,
  .site-footer,
  .admin-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .icon-link {
    width: 100%;
  }

  .product-form {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    width: 100%;
  }

  .admin-content {
    padding: 20px 16px 40px;
  }
}

@keyframes ufoFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

[hidden] {
  display: none !important;
}
