:root {
  color-scheme: dark;
  --bg: #07111f;
  --surface: #0d1b2f;
  --surface-strong: #122540;
  --surface-soft: #162b49;
  --ink: #eef5ff;
  --muted: #9eb0ca;
  --line: rgba(173, 193, 224, 0.18);
  --brand: #fbbf24;
  --brand-strong: #f59e0b;
  --accent: #fde047;
  --gold: #facc15;
  --danger: #fb7185;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 12%, rgba(37, 99, 235, 0.22), transparent 34%),
    radial-gradient(circle at 88% 4%, rgba(56, 189, 248, 0.14), transparent 28%),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 14px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.contact-links,
.cart-button,
.header-actions,
.filter-group {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  color: var(--surface);
  font-size: 13px;
  letter-spacing: 0;
}

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

.nav {
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--ink);
}

.header-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.login-button,
.logout-button {
  min-height: 42px;
  border: 1px solid rgba(250, 204, 21, 0.42);
  border-radius: 8px;
  padding: 0 16px;
  background: linear-gradient(180deg, #facc15, #f59e0b);
  color: #07111f;
  cursor: pointer;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(250, 204, 21, 0.18);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.login-button:hover,
.logout-button:hover {
  border-color: rgba(253, 224, 71, 0.85);
  background: linear-gradient(180deg, #fde047, #f59e0b);
  transform: translateY(-1px);
}

.logout-button {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  box-shadow: none;
}

.logout-button:hover {
  background: rgba(250, 204, 21, 0.12);
  color: #fde047;
}

.user-chip,
.staff-role,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(250, 204, 21, 0.08);
  color: #fef3c7;
  font-size: 13px;
  font-weight: 900;
}

.is-hidden {
  display: none !important;
}

.cart-button {
  position: relative;
  gap: 10px;
  min-height: 42px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 8px;
  padding: 0 14px;
  background: #0b1220;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.cart-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #111827;
  font-size: 13px;
}

.top-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #102b56, #0f3c75);
  color: #ffffff;
  text-align: center;
}

.top-message strong,
.top-message span {
  overflow-wrap: anywhere;
}

.top-message span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 78px);
  min-height: calc(100svh - 122px);
  padding: clamp(38px, 7vw, 92px) clamp(16px, 4vw, 56px) clamp(24px, 5vw, 48px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 8vw, 84px);
}

h2 {
  font-size: clamp(30px, 5vw, 52px);
}

h3 {
  font-size: 19px;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.5vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--brand);
  color: #07111f;
  box-shadow: 0 12px 24px rgba(250, 204, 21, 0.28);
}

.button.primary:hover {
  background: var(--brand-strong);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
}

.hero-panel {
  display: grid;
  gap: 22px;
  min-height: min(58svh, 560px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(5, 12, 24, 0.7)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 12px, transparent 12px 24px);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-weight: 900;
  padding: clamp(24px, 5vw, 52px);
  text-align: center;
}

.hero-panel img {
  width: min(180px, 45vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #ffffff;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.hero-panel strong {
  display: block;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1;
}

.hero-panel span {
  display: block;
  max-width: 460px;
  margin-top: 10px;
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(420px, 100%);
  margin: 0;
}

.hero-stats div {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats dt {
  color: var(--accent);
  font-size: 28px;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  max-width: min(290px, calc(100% - 36px));
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(9, 19, 34, 0.92);
  box-shadow: 0 10px 26px rgba(29, 37, 35, 0.12);
}

.hero-note span {
  color: var(--muted);
  font-size: 14px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.trust-band div {
  display: grid;
  gap: 4px;
  min-height: 108px;
  align-content: center;
  padding: 22px clamp(16px, 4vw, 56px);
  background: var(--surface-strong);
}

.trust-band strong {
  font-size: 18px;
}

.trust-band span {
  color: var(--muted);
}

.section,
.about-section,
.contact-section,
.support-section,
.staff-section {
  padding: clamp(54px, 8vw, 96px) clamp(16px, 4vw, 56px);
}

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

.filter-group {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.filter.active,
.filter:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: #07111f;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(56, 189, 248, 0.12)),
    #0b1627;
}

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

.product-media img.is-missing {
  display: none;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 8px;
  padding: 7px 11px;
  background: rgba(245, 158, 11, 0.96);
  color: #111827;
  font-size: 13px;
  font-weight: 900;
}

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

.product-info {
  display: grid;
  gap: 8px;
}

.product-info p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.price {
  font-size: 20px;
  font-weight: 950;
}

.stock {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.add-to-cart {
  width: 100%;
}

.about-section,
.contact-section,
.support-section,
.staff-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.about-section p,
.contact-section p,
.support-section p,
.staff-section p {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.about-list {
  display: grid;
  gap: 12px;
}

.about-list div,
.contact-links,
.support-form,
.ticket-preview,
.staff-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.about-list div {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.about-list span {
  color: var(--muted);
}

.contact-links {
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.contact-links a {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.contact-links a:last-child {
  border-bottom: 0;
}

.contact-links a:hover {
  background: var(--surface-strong);
}

.support-section,
.staff-section {
  grid-template-columns: 1fr;
}

.support-heading {
  margin-bottom: 0;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 18px;
}

.support-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #081525;
  color: var(--ink);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(250, 204, 21, 0.72);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.13);
}

.wide-field {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.form-note.error {
  color: var(--danger);
}

.ticket-preview,
.staff-card {
  padding: 18px;
}

.staff-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
}

.staff-card-wide {
  min-width: 0;
}

.ticket-list,
.user-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.ticket-item,
.authorized-user {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.ticket-item-header,
.authorized-user {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.ticket-item h4 {
  margin: 0;
  font-size: 17px;
}

.ticket-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ticket-meta,
.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.message-thread {
  display: grid;
  gap: 8px;
}

.ticket-message {
  display: grid;
  gap: 5px;
  max-width: min(620px, 100%);
  border: 1px solid rgba(173, 193, 224, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
}

.ticket-message.staff-message {
  margin-left: auto;
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(37, 99, 235, 0.17);
  box-shadow: inset 3px 0 0 rgba(56, 189, 248, 0.75);
}

.ticket-message.staff-message .message-header strong {
  color: #7dd3fc;
}

.ticket-message:not(.staff-message) .message-header strong {
  color: #fbbf24;
}

.message-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.message-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.ticket-reply-form {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.ticket-reply-form .button {
  min-height: 42px;
}

.ticket-action {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.ticket-action:hover {
  border-color: rgba(250, 204, 21, 0.55);
}

.danger-action {
  border-color: rgba(251, 113, 133, 0.42);
  color: #fecdd3;
}

.danger-action:hover {
  border-color: rgba(251, 113, 133, 0.8);
  background: rgba(251, 113, 133, 0.12);
}

.ticket-empty {
  color: var(--muted);
  margin: 0;
}

.support-privacy {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(250, 204, 21, 0.08), rgba(13, 27, 47, 0) 46%),
    var(--surface);
}

.support-privacy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.member-ticket-area {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 14px;
}

.member-ticket-area h3 {
  font-size: 20px;
}

.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
}

.cart-panel.is-open {
  pointer-events: auto;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 180ms ease;
}

.cart-panel.is-open .cart-overlay {
  background: rgba(0, 0, 0, 0.58);
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100%);
  height: 100%;
  background: var(--surface);
  box-shadow: -20px 0 40px rgba(29, 37, 35, 0.18);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

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

.cart-header,
.cart-footer {
  padding: 18px;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-size: 24px;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  font-weight: 900;
}

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

.cart-empty {
  display: none;
  padding: 22px 18px;
  color: var(--muted);
}

.cart-empty.is-visible {
  display: block;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.cart-thumb {
  display: grid;
  width: 72px;
  height: 82px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

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

.cart-thumb img.is-missing {
  display: none;
}

.cart-item-body {
  display: grid;
  gap: 8px;
}

.cart-item-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 900;
}

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

.quantity-button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  font-weight: 900;
}

.remove-button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-weight: 900;
}

.cart-footer {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}

.whatsapp-button {
  width: 100%;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 16px;
  pointer-events: none;
}

.auth-modal.is-open {
  pointer-events: auto;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 180ms ease;
}

.auth-modal.is-open .auth-overlay {
  background: rgba(0, 0, 0, 0.62);
}

.auth-box {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(500px, 100%);
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(160deg, rgba(250, 204, 21, 0.08), rgba(13, 27, 47, 0) 38%),
    var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(12px);
  opacity: 0;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.auth-modal.is-open .auth-box {
  transform: translateY(0);
  opacity: 1;
}

.auth-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.auth-header h2 {
  color: #fff7d6;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  border-radius: 8px;
  padding: 4px;
  background: rgba(5, 12, 24, 0.72);
}

.auth-tab {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 950;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.auth-tab:hover {
  color: #fff7d6;
  background: rgba(250, 204, 21, 0.08);
}

.auth-tab.active {
  background: linear-gradient(180deg, #fde047, #f59e0b);
  color: #07111f;
  box-shadow: 0 10px 22px rgba(250, 204, 21, 0.22);
}

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

.auth-form .button.primary {
  width: 100%;
  min-height: 50px;
}

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

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .top-message {
    align-items: center;
    flex-direction: column;
    gap: 3px;
  }

  .hero,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .support-layout,
  .staff-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 132px;
  }

  .cart-button {
    padding: 0 12px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-photo {
    min-height: 320px;
  }

  .hero-panel {
    min-height: 320px;
  }

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

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

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

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

  .cart-thumb {
    width: 64px;
    height: 74px;
  }
}
