body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.upload-box {
  border: 2px dashed #cfe7e9;
  border-radius: 8px;
  padding: 24px;
  background: #f2fbfb;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}

.photo-grid img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  cursor: zoom-in;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  padding: 24px;
}

.photo-lightbox.is-open {
  display: flex;
}

.photo-lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.photo-lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 32px;
  line-height: 1;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

.template-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.template-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.template-item-header {
  font-size: 12px;
  font-weight: 600;
  color: #5f6b75;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.template-set.is-active {
  border: 1px solid #5ec6b1;
  box-shadow: 0 0 0 3px rgba(94, 198, 177, 0.12);
}

.search-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.search-photo img,
.photo-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  background: #f0f0f0;
}

.break-all {
  word-break: break-all;
}

.category-picker {
  position: relative;
}

.category-field {
  width: 100%;
  height: 46px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6c757d;
  cursor: pointer;
}

.category-field-text.is-selected {
  color: #212529;
}

.category-caret {
  width: 6px;
  height: 6px;
  border-right: 2px solid #8aa3a7;
  border-bottom: 2px solid #8aa3a7;
  transform: rotate(45deg);
  margin-left: 8px;
}

.category-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 360px;
  max-height: 460px;
  background: #fff;
  border: 1px solid #e7ecee;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  z-index: 20;
  display: none;
  overflow: hidden;
}

@media (max-width: 576px) {
  .category-panel {
    width: 100%;
    left: 0;
    right: auto;
  }
}

.category-panel.is-open {
  display: block;
}

.category-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #eef2f4;
}

.category-back,
.category-close {
  background: none;
  border: none;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #6c757d;
}

.category-back:disabled {
  opacity: 0.4;
}

.category-title {
  font-weight: 600;
  color: #1f2d3d;
}

.category-panel-search {
  padding: 10px 12px;
  border-bottom: 1px solid #eef2f4;
}

.category-panel-list {
  max-height: 320px;
  overflow-y: auto;
}

.category-item {
  width: 100%;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: none;
  border-bottom: 1px solid #f3f5f7;
  text-align: left;
  cursor: pointer;
}

.category-item:hover {
  background: #f7f9fa;
}

.category-item-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.category-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #e9f3f4;
}

.category-item-title {
  font-size: 14px;
  color: #1f2d3d;
}

.category-path {
  font-size: 12px;
  color: #9aa6ac;
}

.category-arrow {
  color: #8aa3a7;
  font-size: 18px;
}

.category-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #cfd9dd;
}

.category-empty {
  padding: 16px;
  color: #9aa6ac;
}

body.label-print {
  background: #fff;
  margin: 0;
}

.label-page {
  width: 30mm;
  height: 50mm;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.label-card {
  width: 30mm;
  height: 50mm;
  border: 1px solid #ddd;
  padding: 2mm;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2mm;
}

.label-code {
  font-weight: 700;
  font-size: 11pt;
  text-align: center;
}

.label-photo {
  width: 100%;
  height: 18mm;
  object-fit: cover;
  border-radius: 2mm;
}

.photo-status-title {
  font-weight: 600;
}

.photo-next .btn {
  font-size: 1.1rem;
  padding: 14px 18px;
  min-height: 56px;
}

.photo-slots {
  display: grid;
  gap: 12px;
}

.photo-slot {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  gap: 8px;
  align-items: center;
  grid-template-columns: 1fr;
}

.photo-slot-label {
  font-size: 13px;
  font-weight: 600;
}

.photo-slot-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  background: #f2f2f2;
}

.photo-slot-empty {
  font-size: 12px;
  color: #9aa0a6;
}

.page-header {
  margin-bottom: 24px;
}

.page-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.page-subtitle {
  color: #6b7280;
  margin-bottom: 0;
}

.section-card {
  background: #ffffff;
  border: 1px solid #e3e7ec;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(22, 32, 54, 0.06);
  margin-bottom: 16px;
}

.description-textarea {
  min-height: 240px;
}

.section-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.form-label {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(260px, 1fr);
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eef2f6;
}

.form-row:last-child {
  border-bottom: none;
}

.form-field {
  width: 100%;
}

.form-field .form-control,
.form-field .btn,
.tag-input {
  min-height: 44px;
}

.form-field .btn,
.tag-input {
  text-align: left;
}

.form-field .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.attribute-fields.is-hidden {
  display: none;
}

.condition-override .form-check {
  margin: 0;
}

.color-chip {
  font-weight: 600;
  color: #475569;
}

.color-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: #d2d8e1;
  background: #fff;
  padding: 8px 12px;
}

.color-dropdown-menu {
  max-height: 260px;
  overflow: auto;
  padding: 8px;
}

.dropdown-searchable {
  padding: 0;
}

.dropdown-searchable .dropdown-items .dropdown-item {
  white-space: normal;
}

.dropdown-search {
  padding: 8px;
  border-bottom: 1px solid #eef2f6;
  background: #fff;
}

.dropdown-items {
  max-height: 200px;
  overflow: auto;
}


.tag-input {
  border: 1px solid #d2d8e1;
  border-radius: 10px;
  padding: 6px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  width: 100%;
}

.tag-input:focus-within {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid #cfe0ff;
  font-size: 13px;
  line-height: 1;
}

.tag-remove {
  border: 0;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: #4f4f4f;
}

.tag-entry {
  border: 0;
  outline: none;
  flex: 1 1 160px;
  min-width: 140px;
  padding: 6px 4px;
}

.color-picker {
  display: grid;
  gap: 8px;
}

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

.color-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 8px 12px;
  background: #fff;
}

.color-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #d0d0d0;
  background: #fff;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.color-title {
  font-size: 14px;
}

.dashboard-search {
  font-size: 1.15rem;
  padding: 14px 16px;
  border: 2px solid #8ecae6;
  box-shadow: 0 8px 20px rgba(142, 202, 230, 0.25);
}

.dashboard-photo {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: #f2f2f2;
  display: block;
}

.dashboard-photo.placeholder {
  border: 1px dashed #d5d8dc;
}

.dashboard-row {
  cursor: pointer;
  transition: background 0.2s ease;
}

.dashboard-row.status-listed > td {
  background: #eef9f0;
}

.dashboard-row.status-shipped > td {
  background: #eaf4ff;
  text-decoration: line-through;
}

.dashboard-row.status-sold > td {
  background: #f2f2f2;
  color: #8a8a8a;
}

.dashboard-photo-wrap {
  position: relative;
  width: 64px;
  height: 64px;
}

.dashboard-photo-preview {
  position: absolute;
  top: -10px;
  left: 78px;
  width: 220px;
  height: 220px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 20;
  padding: 6px;
}

.dashboard-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.dashboard-photo-wrap:hover .dashboard-photo-preview {
  display: block;
}

.photo-lightbox-prev,
.photo-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 36px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
}

.photo-lightbox-prev {
  left: 24px;
}

.photo-lightbox-next {
  right: 24px;
}

@media print {
  @page {
    size: 30mm 50mm;
    margin: 0;
  }

  body {
    background: #fff;
    margin: 0;
  }

  .navbar,
  .d-print-none {
    display: none !important;
  }

  .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
  }

  .label-page {
    margin: 0;
  }

  .label-card {
    border: none;
  }
}
.bg-light {
  background-color: #f3f5f7 !important;
}

body {
  font-family: "V_INTER", "V_INTER Fallback", "Helvetica Neue", "Helvetica-Neue", Arial, sans-serif;
}

.shop-body {
  background: #0b0d12;
  color: #fff;
  margin: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  overscroll-behavior: none;
}

.shop-app {
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(12px + env(safe-area-inset-top, 0px)) 16px 12px;
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.9), rgba(11, 13, 18, 0));
  backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  pointer-events: none;
}

.shop-title {
  font-weight: 600;
  font-size: 1rem;
}

.shop-badges,
.shop-header .shop-title,
.shop-header .shop-filter-toggle,
.shop-header .btn {
  pointer-events: auto;
}

.shop-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.8rem;
}

.shop-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f4f6fb;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.shop-badge-pill.is-static {
  cursor: default;
}

.shop-badge-remove {
  font-size: 14px;
  line-height: 1;
  opacity: 0.75;
}

.shop-viewport {
  flex: 1;
  display: block;
  height: 100vh;
  height: 100svh;
  padding: 0;
  position: relative;
  overflow: hidden;
  touch-action: none;
}

.shop-card {
  width: 100%;
  max-width: none;
  height: 100%;
  background: #0b0d12;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  display: block;
  transition: opacity 280ms ease, transform 280ms ease;
  will-change: transform, opacity;
}

.shop-card.is-enter {
  opacity: 0;
  z-index: 2;
}

.shop-card.is-enter.is-up {
  transform: translateY(20%);
}

.shop-card.is-enter.is-down {
  transform: translateY(-20%);
}

.shop-card.is-enter.is-active {
  opacity: 1;
  transform: translateY(0);
}

.shop-card.is-exit {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.shop-card.is-exit.is-up {
  opacity: 0;
  transform: translateY(-20%);
}

.shop-card.is-exit.is-down {
  opacity: 0;
  transform: translateY(20%);
}

.shop-card.is-sold {
  opacity: 0.75;
}

.shop-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 5;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.shop-photo-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0c0e13;
}

.shop-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #0b0d12;
  transition: opacity 260ms ease, transform 260ms ease;
  will-change: transform, opacity;
}

.shop-photo.is-enter {
  opacity: 0;
}

.shop-photo.is-enter.is-left {
  transform: translateX(-18%);
}

.shop-photo.is-enter.is-right {
  transform: translateX(18%);
}

.shop-photo.is-enter.is-active {
  opacity: 1;
  transform: translateX(0);
}

.shop-photo.is-exit.is-left {
  opacity: 0;
  transform: translateX(-18%);
}

.shop-photo.is-exit.is-right {
  opacity: 0;
  transform: translateX(18%);
}

.shop-card.is-sold .shop-photo {
  filter: grayscale(1);
}

.shop-photo.placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c6f7a;
}

.shop-photo-nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.shop-photo-prev,
.shop-photo-next {
  width: 35%;
  border: none;
  background: transparent;
}

.shop-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 12px;
  z-index: 4;
}

.shop-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-bottom: 6px;
}

.shop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.shop-dot.is-active {
  background: #fff;
}

.shop-overlay-panel {
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 10px;
}

.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 6px;
}

.shop-page-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.shop-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.shop-page-info {
  font-size: 0.85rem;
  color: #d9dce5;
}

.shop-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shop-info-title {
  font-weight: 700;
  font-size: 1.25rem;
}

.shop-info-meta {
  color: #d0d4de;
  font-size: 0.95rem;
}

.shop-info-price {
  font-size: 1.35rem;
  font-weight: 700;
}

.shop-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.shop-actions .btn {
  white-space: nowrap;
}

.shop-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
}

.shop-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.shop-detail-thumb {
  border: none;
  padding: 0;
  background: #0c0e13;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
}

.shop-detail-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  display: block;
}

.shop-detail.is-sold .shop-detail-thumb img {
  filter: grayscale(1);
  opacity: 0.7;
}

.shop-detail-info {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
  background: #12151f;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: fit-content;
}

.shop-detail-actions {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.shop-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 60;
}

.shop-lightbox.is-open {
  display: flex;
}

.shop-lightbox-image {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.shop-lightbox-close,
.shop-lightbox-prev,
.shop-lightbox-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.shop-lightbox-close {
  top: 24px;
  right: 24px;
}

.shop-lightbox-prev {
  left: 24px;
}

.shop-lightbox-next {
  right: 24px;
}

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

.shop-tile {
  background: #12151f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
}

.shop-tile-media {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background: #0c0e13;
}

.shop-tile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-tile.is-sold {
  opacity: 0.7;
}

.shop-tile.is-sold .shop-tile-photo {
  filter: grayscale(1);
}

.shop-tile-body {
  padding: 14px 14px 6px;
  display: grid;
  gap: 6px;
}

.shop-tile-actions {
  padding: 0 14px 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.shop-counter {
  position: absolute;
  top: calc(56px + env(safe-area-inset-top, 0px));
  right: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 5;
}

.shop-empty,
.shop-loading {
  width: 100%;
  max-width: 520px;
  text-align: center;
  padding: 32px;
  border-radius: 16px;
  background: #1b1f2b;
}

.shop-filters {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.5);
  z-index: 40;
}

.shop-filters.is-open {
  display: flex;
}

.shop-filters-inner {
  background: #fff;
  color: #111;
  width: 100%;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 16px;
}

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

.shop-filter-title {
  font-weight: 600;
}

.shop-filter-close {
  border: none;
  background: #f1f3f5;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  font-size: 20px;
}

.shop-filter-grid {
  display: grid;
  gap: 12px;
}

.shop-filter-grid label span {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: #60636f;
}

.shop-filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-filter-checkbox span {
  margin-bottom: 0;
  font-size: 13px;
}

.shop-filter-checkbox input {
  width: 18px;
  height: 18px;
}

.shop-filter-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .shop-viewport {
    padding: 0;
  }
  .shop-card {
    max-width: none;
  }
  .shop-actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .shop-body.shop-desktop {
    overflow: auto;
  }
  .shop-body.shop-desktop .shop-app {
    height: auto;
    min-height: 100vh;
  }
  .shop-body.shop-desktop .shop-viewport {
    height: auto;
    overflow: visible;
    padding: calc(72px + env(safe-area-inset-top, 0px)) 24px 40px;
    touch-action: auto;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
  }
  .shop-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }
  .shop-body.shop-desktop .shop-pagination {
    justify-content: center;
    margin-top: 18px;
  }
  .shop-tile-media {
    padding-top: 85%;
  }
  .shop-body.shop-desktop .shop-tile-photo {
    object-fit: cover;
  }
  .shop-body.shop-desktop .shop-tile-body {
    padding: 10px 12px 6px;
  }
  .shop-body.shop-desktop .shop-tile .shop-info-title {
    font-size: 0.95rem;
    font-weight: 600;
  }
  .shop-body.shop-desktop .shop-tile .shop-info-meta {
    font-size: 0.78rem;
    color: #b3b8c6;
  }
  .shop-body.shop-desktop .shop-tile .shop-info-price {
    font-size: 0.95rem;
    font-weight: 600;
  }
  .shop-body.shop-desktop .shop-tile-actions {
    padding: 0 12px 12px;
  }
  .shop-detail-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
