:root {
  --bg: #07090d;
  --panel: #111722;
  --panel-strong: #151d2b;
  --panel-soft: #0d1118;
  --text: #f4f7fb;
  --muted: #a8b0bf;
  --line: rgba(255, 255, 255, 0.11);
  --blue: #0d6efd;
  --blue-strong: #075ee8;
  --cyan: #2ce5d0;
  --green: #22c55e;
  --danger: #ef4444;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(13, 110, 253, 0.24), transparent 30rem),
    linear-gradient(180deg, #0a0d13 0%, var(--bg) 55%);
}

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

button {
  cursor: pointer;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(220px, 400px) auto;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.94);
  backdrop-filter: blur(16px);
}

.topbar-left,
.topbar-actions,
.brand,
.search-box,
.product-actions,
.side-menu-header,
.checkout-coupon,
.terms-check {
  display: flex;
  align-items: center;
}

.topbar-left,
.topbar-actions {
  gap: 10px;
}

.menu-button,
.login-button,
.cart-button,
.icon-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.menu-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0 14px;
}

.brand {
  gap: 9px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.12);
}

.brand-mark {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #06110f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verified-badge {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: #fff;
  background: #2f80ff;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 0 14px rgba(47, 128, 255, 0.45);
}

.search-box {
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #151922;
  color: var(--muted);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  font-size: 1.05rem;
}

.support-icon {
  width: 19px;
  height: 19px;
  fill: #fff;
}

.menu-support-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 22px;
  fill: var(--muted);
}

.login-button {
  padding: 0 18px;
}

.logout-button {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.12);
}

.cart-button {
  position: relative;
  padding: 0 16px;
  background: var(--blue);
  border-color: transparent;
}

.cart-button span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--blue-strong);
  font-size: 0.72rem;
}

.side-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: 280px;
  padding: 14px;
  border-right: 1px solid var(--line);
  background: #080a0f;
  box-shadow: var(--shadow);
}

.side-menu-header {
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.side-menu-header button,
.modal-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.3rem;
}

.side-menu nav {
  display: grid;
  gap: 8px;
  padding-top: 18px;
}

.side-menu nav a,
.side-menu nav button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  padding: 0 12px;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.side-menu nav span {
  width: 22px;
  color: var(--muted);
  text-align: center;
}

.side-menu nav a:hover,
.side-menu nav button:hover {
  background: rgba(255, 255, 255, 0.07);
}

.page-shade {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.62);
}

main {
  width: min(1330px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: end;
  padding: 26px 0 14px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.hero-panel,
.terms-card,
.admin-panel,
.modal,
.product-card,
.order-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(21, 29, 43, 0.94), rgba(11, 15, 22, 0.94));
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 18px 20px;
  border-radius: 12px;
}

.hero-panel strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 1.32rem;
}

.status-pill,
.stock-badge,
.payment-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  color: #06110f;
  background: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
}

.section,
.terms-section {
  padding: 16px 0 34px;
}

.section-heading {
  margin-bottom: 16px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
}

#produtos .section-heading h2 {
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 214px;
  border-radius: 8px;
}

.product-image,
.product-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #121722;
}

.product-placeholder {
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 1.25rem;
  font-weight: 900;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 8px;
}

.product-body h3 {
  min-height: 26px;
  margin-bottom: 4px;
  font-size: 0.76rem;
  line-height: 1.25;
}

.price {
  display: block;
  margin-bottom: 2px;
  font-size: 0.84rem;
  font-weight: 900;
}

.pix-label {
  color: var(--muted);
  font-size: 0.7rem;
}

.review-line {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
}

.product-actions {
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-top: 7px;
}

.product-card .primary-button,
.product-card .secondary-button,
.product-card .buy-button,
.product-card .cart-add-button {
  min-height: 30px;
  border-radius: 7px;
  font-size: 0.72rem;
}

.primary-button,
.secondary-button,
.buy-button,
.cart-add-button,
.danger-button,
.discord-button,
.checkout-coupon button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  padding: 0 10px;
  font-weight: 900;
}

.primary-button,
.buy-button,
.checkout-coupon button {
  color: #fff;
  background: var(--blue);
}

.secondary-button,
.cart-add-button {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.buy-button {
  width: 100%;
}

.empty-state,
.terms-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.orders-list {
  display: grid;
  gap: 8px;
}

.order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 10px;
  align-items: stretch;
  border-radius: 8px;
  padding: 9px;
  font-size: 0.76rem;
}

.order-main {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.order-topline,
.order-products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.order-label {
  display: block;
  margin-bottom: 1px;
  color: var(--cyan);
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 999px;
  padding: 0 7px;
  white-space: nowrap;
  font-size: 0.66rem;
  font-weight: 900;
}

.order-status.paid {
  color: #062a1c;
  background: #34d399;
}

.order-status.pending {
  color: #fef3c7;
  border: 1px solid rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.14);
}

.order-products,
.order-next span {
  color: var(--muted);
}

.order-products strong {
  color: var(--text);
  white-space: nowrap;
}

.order-next {
  display: grid;
  gap: 2px;
}

.order-next strong {
  font-size: 0.76rem;
}

.order-next span {
  font-size: 0.72rem;
  line-height: 1.3;
}

.order-action {
  justify-self: start;
  min-height: 27px;
  padding: 0 9px;
  border-radius: 7px;
  font-size: 0.7rem;
}

.order-cover {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.55rem;
  font-weight: 900;
}

.order-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orders-section {
  padding-top: 8px;
}

.orders-section .section-heading {
  margin-bottom: 8px;
}

.orders-section h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.terms-card {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text);
  padding: 12px 14px;
  font-size: 0.72rem;
  line-height: 1.38;
}

.terms-card p {
  margin-bottom: 7px;
}

.terms-card p:last-child {
  margin-bottom: 0;
}

.terms-section .section-heading {
  margin-bottom: 8px;
}

.terms-section .section-heading h2 {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.admin-panel {
  margin: 32px 0 60px;
  padding: 24px;
  border-radius: 14px;
}

.owner-gate {
  display: grid;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.admin-summary div,
.receipt-box div {
  display: grid;
  gap: 3px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-summary span,
.receipt-box span {
  color: var(--muted);
  font-size: 0.7rem;
}

.product-reviews,
.faq-list,
.receipt-box {
  display: grid;
  gap: 10px;
}

.product-reviews {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.product-reviews span,
.faq-list p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.faq-list details {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

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

.admin-grid {
  grid-template-columns: 0.7fr 1.3fr 0.8fr;
  align-items: start;
}

.admin-columns {
  grid-template-columns: repeat(6, minmax(135px, 1fr));
  align-items: start;
  margin-top: 14px;
}

.admin-columns > div {
  min-width: 0;
}

.admin-columns h3 {
  margin-bottom: 8px;
  font-size: 0.84rem;
}

.admin-form,
.modal-form {
  display: grid;
  gap: 12px;
}

.admin-form {
  align-content: start;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-form h3 {
  margin-bottom: 4px;
  font-size: 0.92rem;
}

#brandForm {
  align-content: start;
  gap: 8px;
  padding: 12px;
}

#brandForm h3 {
  margin-bottom: 2px;
  font-size: 0.92rem;
}

#brandForm input[type="file"] {
  min-height: 32px;
}

#brandForm .primary-button,
#brandForm .secondary-button {
  width: 100%;
  min-height: 32px;
  font-size: 0.76rem;
}

#productForm {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#productForm h3,
#productForm label:nth-of-type(1),
#productForm label:nth-of-type(2),
#productForm label:nth-of-type(5),
#productForm label:nth-of-type(6),
#productForm label:nth-of-type(7),
#productForm button {
  grid-column: 1 / -1;
}

#couponForm {
  gap: 10px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.admin-form label {
  gap: 4px;
  font-size: 0.76rem;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  background: #080b10;
  outline: 0;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  min-height: 34px;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 0.78rem;
}

.admin-form textarea {
  min-height: 52px;
}

.admin-form input[type="file"] {
  min-height: 34px;
  padding: 6px 8px;
}

.admin-form .primary-button,
.admin-form .secondary-button {
  min-height: 34px;
  border-radius: 8px;
  font-size: 0.78rem;
}

textarea {
  resize: vertical;
}

.admin-list {
  display: grid;
  max-height: 360px;
  gap: 6px;
  overflow: auto;
  padding-right: 2px;
}

.admin-item {
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.74rem;
}

.admin-item strong {
  font-size: 0.78rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.admin-item span {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.admin-item .secondary-button,
.admin-item .danger-button,
#deleteSelectedStock,
#resetProducts {
  min-height: 28px;
  padding: 0 8px;
  font-size: 0.7rem;
}

.admin-columns .empty-state,
#paymentConfigStatus {
  padding: 8px;
  border-radius: 8px;
  font-size: 0.7rem;
  line-height: 1.25;
}

#paymentConfigStatus {
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.danger-button {
  color: #fff;
  background: var(--danger);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.76);
}

.modal {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 14px;
  padding: 24px;
}

.wide-modal {
  width: min(760px, 100%);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.discord-button {
  width: min(100%, 400px);
  min-height: 42px;
  margin: 8px auto 12px;
  border-radius: 8px;
  justify-self: center;
  color: #fff;
  background: #5865f2;
}

#googleSignInButton {
  width: min(100%, 400px);
  height: 42px;
  justify-self: center;
  min-height: 42px;
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 8px;
}

#googleSignInButton > div,
#googleSignInButton iframe {
  width: 100% !important;
  height: 42px !important;
  border-radius: 8px !important;
}

#googleSignInButton iframe {
  display: block;
}

.google-fallback {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: #fff;
  color: #111827;
  font-weight: 900;
}

.cart-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 54px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-button,
.trash-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
}

.trash-button {
  border-color: rgba(239, 68, 68, 0.35);
  color: #fff;
  background: var(--danger);
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.account-tab,
.text-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
}

.account-tab.active {
  border-color: var(--blue);
  background: rgba(13, 110, 253, 0.25);
}

.text-button {
  color: var(--cyan);
  background: transparent;
}

.product-detail-modal {
  width: min(1320px, 100%);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr;
  gap: 16px;
}

.detail-image,
.detail-placeholder {
  width: 100%;
  min-height: 560px;
  border-radius: 8px;
  object-fit: cover;
  background: #111722;
}

.detail-placeholder {
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 8rem;
  font-weight: 900;
}

.detail-main,
.detail-sidebar,
.detail-buy-box {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-option {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  background: rgba(13, 110, 253, 0.18);
}

.detail-buy-box {
  margin-top: auto;
}

.detail-sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

.info-box {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  background: rgba(21, 29, 43, 0.78);
}

.info-box h3 {
  margin-bottom: 10px;
}

.stock-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.stock-check input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: 360px;
  border: 1px solid rgba(34, 197, 94, 0.42);
  border-radius: 12px;
  padding: 14px 16px;
  color: #ecfdf5;
  background: #064e3b;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.cart-item img,
.cart-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  background: #111722;
}

.cart-thumb {
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-weight: 900;
}

.checkout-coupon {
  gap: 8px;
  margin: 12px 0;
}

.checkout-coupon input {
  flex: 1;
}

.totals {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.totals div {
  display: flex;
  justify-content: space-between;
}

.terms-check {
  gap: 10px;
  grid-template-columns: auto 1fr;
  margin: 12px 0;
}

.terms-check input {
  width: auto;
  min-height: auto;
}

.terms-check a {
  color: var(--text);
  font-weight: 900;
}

.pay-button {
  width: 100%;
  min-height: 56px;
  font-size: 1.05rem;
}

.pix-box {
  display: grid;
  gap: 14px;
}

.pix-box img {
  width: min(260px, 100%);
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  background: #fff;
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero,
  .admin-grid,
  .admin-columns {
    grid-template-columns: 1fr;
  }

  .admin-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .topbar-left,
  .topbar-actions {
    justify-content: space-between;
  }

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

  .admin-summary {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 44px 1fr;
  }

  .order-card {
    grid-template-columns: 1fr;
  }

  .order-cover {
    order: -1;
    min-height: 92px;
  }

  .order-topline,
  .order-products {
    align-items: flex-start;
    flex-direction: column;
  }

  #productForm {
    grid-template-columns: 1fr;
  }

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

  .detail-image,
  .detail-placeholder {
    min-height: 320px;
  }
}
