@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;600;700;800&family=Oxygen:wght@400;700&family=Poppins:wght@400;500;600;700;800&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --bg-1: #f4efe6;
  --bg-2: #e7f2ec;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --line: rgba(16, 31, 24, 0.12);
  --text: #102118;
  --muted: #5a6a61;
  --brand: #126b55;
  --brand-dark: #0b4e63;
  --brand-warm: #cf7833;
  --buy: #15754b;
  --pass: #5f6b66;
  --shadow: 0 28px 70px rgba(20, 32, 26, 0.14);
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Oxygen", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 120, 51, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(18, 107, 85, 0.16), transparent 22%),
  linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

button,
input,
textarea,
select {
  font: inherit;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Dosis", "Poppins", sans-serif;
}

body.zoom-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

body::before {
  left: -7rem;
  top: 8rem;
  background: rgba(18, 107, 85, 0.15);
}

body::after {
  right: -8rem;
  bottom: -6rem;
  background: rgba(207, 120, 51, 0.15);
}

.page {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand-mark {
  width: 118px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

.eyebrow,
.section-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
}

.brand-copy h1 {
  margin: 4px 0 0;
  font-family: "Dosis", "Poppins", sans-serif;
  font-size: clamp(1.2rem, 0.95rem + 1vw, 1.75rem);
  line-height: 1.1;
  font-weight: 700;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 107, 85, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 107, 85, 0.28);
  box-shadow: 0 12px 30px rgba(20, 32, 26, 0.08);
}

.wrap {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.wrap-wide {
  width: min(1180px, calc(100% - 32px));
}

.intro-panel {
  margin-bottom: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(250, 248, 243, 0.82));
  box-shadow: var(--shadow);
}

.intro-panel h2 {
  margin: 8px 0 10px;
  font-family: "Dosis", "Poppins", sans-serif;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.6rem);
  line-height: 1.05;
  max-width: 14ch;
  font-weight: 700;
}

.intro-panel p {
  margin: 0;
  color: var(--muted);
  max-width: 68ch;
  line-height: 1.55;
}

.intro-panel p + p {
  margin-top: 10px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 12px;
}

.tag-btn {
  appearance: none;
  border: 1px solid rgba(16, 31, 24, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(18, 33, 26, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.tag-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(18, 33, 26, 0.09);
}

.tag-btn.active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 32px rgba(18, 107, 85, 0.22);
}

.progress {
  margin-bottom: 12px;
  text-align: right;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.slider {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(145deg, rgba(18, 107, 85, 0.08), rgba(207, 120, 51, 0.1)),
    linear-gradient(180deg, #faf8f4, #f0ece4);
}

.product-media.has-slider {
  user-select: none;
  touch-action: pan-y;
}

.slider-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slider-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(16, 31, 24, 0.16);
  transition: transform 160ms ease, background-color 160ms ease, opacity 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.slider-arrow.prev {
  left: 12px;
}

.slider-arrow.next {
  right: 12px;
}

.card-body {
  padding: 24px;
}

.card-body h2 {
  margin: 0 0 10px;
  font-family: "Dosis", "Poppins", sans-serif;
  font-size: clamp(1.35rem, 1rem + 1vw, 1.85rem);
  line-height: 1.18;
  font-weight: 700;
}

.card-body .price {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 107, 85, 0.08);
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 800;
}

.actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.actions button {
  min-height: 52px;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(16, 31, 24, 0.11);
}

.actions button:disabled,
.submit-btn:disabled,
.delete-btn:disabled {
  cursor: progress;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.btn-pass {
  background: linear-gradient(135deg, #e05252, #c62828);
  color: #fff;
}

.btn-buy {
  background: linear-gradient(135deg, #19a463, #127a49);
  color: #fff;
}

.thank-you {
  padding: 88px 28px;
  border: 1px dashed rgba(16, 33, 24, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  text-align: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow);
}

.empty-state {
  padding: 32px 0;
  color: var(--muted);
  text-align: center;
}

.dash-layout {
  display: grid;
  grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.dash-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.dash-section h2 {
  margin: 0;
  font-size: 1.15rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

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

.table-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.control-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.control-label select {
  min-width: 160px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 31, 24, 0.12);
  border-radius: 12px;
  background: rgba(248, 250, 248, 0.96);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  outline: none;
}

.control-label select:focus {
  border-color: rgba(18, 107, 85, 0.46);
  box-shadow: 0 0 0 4px rgba(18, 107, 85, 0.12);
  background: #fff;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-row label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(16, 31, 24, 0.12);
  border-radius: 14px;
  background: rgba(248, 250, 248, 0.96);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(90, 106, 97, 0.7);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(18, 107, 85, 0.46);
  box-shadow: 0 0 0 4px rgba(18, 107, 85, 0.12);
  background: #fff;
}

.form-row textarea {
  min-height: 92px;
  resize: vertical;
}

.form-row input[type="file"] {
  padding: 10px 12px;
  background: rgba(248, 250, 248, 0.72);
}

.field-help {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.setting-copy {
  min-width: 0;
}

.setting-title {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
}

.setting-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-family: "Oxygen", "Segoe UI", "Helvetica Neue", sans-serif;
}

.switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-track {
  position: relative;
  width: 58px;
  height: 34px;
  border-radius: 999px;
  background: rgba(95, 107, 102, 0.2);
  box-shadow: inset 0 0 0 1px rgba(16, 31, 24, 0.08);
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.switch-track::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 14px rgba(16, 31, 24, 0.18);
  transition: transform 160ms ease;
}

.switch input:checked + .switch-track {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: inset 0 0 0 1px rgba(18, 107, 85, 0.22);
}

.switch input:checked + .switch-track::after {
  transform: translateX(24px);
}

.switch input:focus-visible + .switch-track {
  outline: 3px solid rgba(18, 107, 85, 0.22);
  outline-offset: 3px;
}

.submit-btn {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--text), #27463b);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(16, 33, 24, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(16, 33, 24, 0.2);
}

#productTable {
  overflow-x: auto;
}

#productTable table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(16, 31, 24, 0.08);
  vertical-align: middle;
}

thead th {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 243, 0.96);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tbody tr:hover {
  background: rgba(18, 107, 85, 0.03);
}

td img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: #eef1ee;
}

.count-buy,
.count-pass {
  font-weight: 800;
}

.count-buy {
  color: var(--buy);
}

.count-pass {
  color: var(--pass);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.status-pill.is-active {
  background: rgba(21, 117, 75, 0.12);
  color: var(--buy);
}

.status-pill.is-inactive {
  background: rgba(95, 107, 102, 0.12);
  color: var(--pass);
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-btn {
  border: none;
  background: rgba(18, 107, 85, 0.08);
  color: var(--brand);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.status-btn:hover {
  background: rgba(18, 107, 85, 0.14);
}

.delete-btn {
  border: none;
  background: rgba(207, 58, 58, 0.08);
  color: #a02f2f;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.delete-btn:hover {
  transform: translateY(-1px);
  background: rgba(207, 58, 58, 0.14);
}

.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.pager-btn {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(16, 31, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.pager-btn:hover {
  border-color: rgba(18, 107, 85, 0.22);
  box-shadow: 0 10px 22px rgba(20, 32, 26, 0.08);
}

.pager-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}

.pager-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-mark {
    width: 102px;
  }

  .wrap,
  .wrap-wide {
    width: min(100% - 24px, 1180px);
    padding-top: 22px;
  }

  .dash-layout {
    grid-template-columns: 1fr;
  }

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

  #productTable table {
    min-width: 640px;
  }

  .pagination-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .pager-meta {
    order: -1;
  }

  .pager-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 16px 16px 14px;
  }

  .wrap,
  .wrap-wide {
    width: min(100% - 16px, 1180px);
    padding-bottom: 56px;
  }

  .intro-panel,
  .dash-section,
  .card {
    border-radius: 22px;
  }

  .intro-panel,
  .dash-section,
  .card-body {
    padding: 20px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 90px;
  }

  .progress {
    text-align: left;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }
}

/* Feedback page redesign */
.feedback-page {
  background: linear-gradient(180deg, #35503b 0%, #243125 100%);
}

.feedback-page::before {
  background: rgba(255, 255, 255, 0.08);
  left: -10rem;
  top: 10rem;
}

.feedback-page::after {
  background: rgba(255, 196, 0, 0.08);
  right: -9rem;
  bottom: -8rem;
}

.phone-frame {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 31, 24, 0.1);
}

.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.store-logo {
  width: 120px;
  display: block;
}

.wrap-phone {
  width: 100%;
  margin: 0;
  padding: 8px 0 22px;
}

.tags--product {
  padding: 10px 16px 0;
  margin: 0 0 8px;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tags--product::-webkit-scrollbar {
  display: none;
}

.tags--product .tag-btn {
  border-width: 2px;
  box-shadow: none;
  background: #fff;
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
  flex: 0 0 auto;
}

.tags--product .tag-btn.active {
  background: #fff;
  color: #222;
  border-color: #d8d8d8;
  box-shadow: inset 0 0 0 1px #d8d8d8;
}

.product-card {
  display: flex;
  flex-direction: column;
  margin: 0 16px;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(18, 23, 18, 0.12);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1.25;
  background: #eceef3;
}

.product-media.has-slider {
  cursor: zoom-in;
}

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

.zoom-trigger {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(20, 20, 20, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.zoom-trigger:hover {
  background: rgba(20, 20, 20, 0.9);
}

.product-body {
  padding: 16px 16px 10px;
  background: #fff;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.product-title-row h2 {
  margin: 0;
  color: #202020;
  font-family: "Dosis", "Poppins", sans-serif;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1 1 auto;
}

.product-price {
  flex: 0 0 auto;
  margin: 0;
  color: #ef0020;
  font-family: "Dosis", "Poppins", sans-serif;
  font-size: clamp(1.55rem, 1.1rem + 1.35vw, 1.95rem);
  line-height: 1;
  white-space: nowrap;
  font-weight: 800;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid #d9d9d9;
  color: #202020;
  font-size: 0.95rem;
  background: #fff;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
}

.product-footer {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff);
  border-top: 1px solid rgba(16, 31, 24, 0.08);
  box-shadow: 0 -10px 24px rgba(16, 23, 18, 0.08);
}

.footer-copy {
  min-width: 0;
  width: 100%;
}

.footer-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.actions--footer {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.actions--footer .btn-pass {
  border: 2px solid rgba(198, 40, 40, 0.28);
  background: linear-gradient(135deg, #e05252, #c62828);
  color: #fff;
}

.actions--footer .btn-buy {
  background: linear-gradient(135deg, #1bb267, #0f7a47);
  color: #fff;
  border-radius: 999px;
  font-family: "Dosis", "Poppins", sans-serif;
  font-weight: 800;
}

.empty-card {
  margin: 0 16px;
  padding: 56px 24px;
  border-radius: 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 40px rgba(18, 23, 18, 0.12);
}

.empty-card h2 {
  margin: 10px 0 8px;
  font-size: 1.35rem;
}

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

.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.zoom-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.zoom-sheet {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(92vw, 860px);
  max-height: 92vh;
  padding: 16px;
  border-radius: 24px;
  background: rgba(14, 17, 16, 0.96);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

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

.zoom-title {
  min-width: 0;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
}

.zoom-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.zoom-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 48vh;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.04);
  touch-action: none;
  cursor: grab;
}

.zoom-stage:active {
  cursor: grabbing;
}

.zoom-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform-origin: center center;
  user-select: none;
  pointer-events: none;
  will-change: transform;
  transition: transform 110ms ease;
}

.zoom-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.zoom-control {
  min-height: 44px;
  min-width: 44px;
  padding: 0 14px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
}

.zoom-control--wide {
  min-width: 92px;
}

.zoom-help {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 560px) {
  .store-toolbar {
    padding: 12px;
  }

  .store-logo {
    width: 104px;
  }

  .product-card,
  .empty-card {
    margin-inline: 12px;
  }

  .product-body {
    padding-inline: 14px;
  }

  .product-footer {
    padding-inline: 14px;
  }

  .actions--footer {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zoom-modal {
    padding: 12px;
  }

  .zoom-sheet {
    width: calc(100vw - 24px);
    padding: 12px;
    border-radius: 20px;
  }

  .zoom-stage {
    min-height: 42vh;
  }

  .zoom-control--wide {
    min-width: 76px;
  }
}
