:root {
  --line: #ece8df;
  --text: #242424;
  --muted: #7a7a7a;
  --accent: #ff7f63;
  --accent-strong: #8F090B;
  --soft: #fff3dc;
  --soft-blue: #e8f3ff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.app {
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  background: #fff;
  overflow-x: visible;
  display: flex;
  flex-direction: column;
}
.content-wrap {
  padding: 0 20px 0;
  flex: 1 0 auto;
}
.bottom-image {
  flex-shrink: 0;
}
.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff4e8;
  color: #8c4f17;
  font-size: 14px;
  font-weight: 700;
}
.notice {
  margin: 0 0 12px;
  color: #e04934;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}
.category-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(calc((100% - 20px) / 6), 120px);
  gap: 4px;
  margin-bottom: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #c4c4c4 #ececec;
  justify-content: start;
}
.category-grid::-webkit-scrollbar { -webkit-appearance: none; height: 7px; }
.category-grid::-webkit-scrollbar-track { background: #ececec; border-radius: 999px; }
.category-grid::-webkit-scrollbar-thumb { background: #b9b9b9; border-radius: 999px; }
.category-grid::-webkit-scrollbar-thumb:hover { background: #9a9a9a; }
.category-strip {
  position: relative;
  margin-bottom: 22px;
}
.category-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border: 2px solid #e9dfcf;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #4f4a42;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.category-nav-btn.show { display: inline-flex; }
.category-nav-btn.left { left: -4px; }
.category-nav-btn.right { right: -4px; }
.category-strip::before,
.category-strip::after {
  content: "";
  position: absolute;
  top: 0;
  width: 28px;
  height: calc(100% - 6px);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.category-strip::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0) 100%);
}
.category-strip::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0) 100%);
}
.category-strip.has-left::before,
.category-strip.has-right::after { opacity: 1; }
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 130px;
  text-align: center;
  gap: 4px;
}
.category-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  height: 90%;
  overflow: hidden;
  border-radius: 0;
  background: none;
  border: none;
  font-size: 14px;
  box-shadow: none;
}
.category-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.category-grid .category-card:nth-child(3n) .category-icon {
  background: none;
  border-color: transparent;
  box-shadow: none;
}
.category-label {
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  min-height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section { margin-bottom: 26px; }
.category-return-wrap {
  margin: 6px 0 28px;
  display: flex;
  justify-content: center;
}
.category-return-wrap--top {
  margin: 0 0 14px;
}
.category-return-wrap--stacked {
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.category-return-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  max-width: 378px;
  min-height: 44px;
  padding: 0.4rem 0.75rem !important;
  margin-top: 0;
  border-radius: 6px;
  border: 0;
  background: #7f7070;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);
}
.category-return-button--top {
  background: #c9454b;
}
.category-return-button--top:hover,
.category-return-button--top:focus,
.category-return-button--top:active {
  background: #c9454b !important;
  color: #fff !important;
  opacity: 1 !important;
}
.category-return-button--top .store-top-button-label::before {
  content: "";
  display: inline-block !important;
  width: 18px;
  height: 12px;
  margin-right: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12'%3E%3Cpath d='M1 10.5L9 2.5L17 10.5' fill='none' stroke='white' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat !important;
  position: static;
  transform: none;
}
.category-return-button--top .store-top-button-label::after {
  content: none;
  display: none !important;
}
.category-return-button--top .store-top-button-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0 auto;
  position: relative;
  left: 14px;
}
.category-return-button .store-top-button-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.category-return-button .store-top-button-label::before {
  content: "";
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(calc(-50% - 1px));
  width: 24px;
  height: 24px;
  background: url("../images/dammy/store_top_button_icon.svg") center / contain no-repeat;
}
.category-return-button:hover,
.category-return-button:focus {
  color: #fff;
  text-decoration: none;
  background: #7f7070;
}
.bottom-image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.section-title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
}
.empty-products-message {
  margin: 10px 0 0;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: start;
  gap: 14px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: none;
  width: 100%;
}
.favorite-toggle-form {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  margin: 0;
}
.favorite-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: #b8b8b8;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}
.favorite-badge i {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.favorite-badge i::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.favorite-badge.is-active {
  color: #ef6c79;
}
.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  display: block;
  background: #fff;
  border-bottom: 1px solid var(--line);
  width: 100%;
  overflow: hidden;
}
.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: contrast(1.04) saturate(1.04);
}
.product-image img.fit-contain {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
.product-image img.fit-safe {
  inset: 4%;
  width: 92%;
  height: 92%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
.product-body {
  padding: 10px 11px 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  display: flex;
  flex-direction: column;
}

.low-stock-count {
  display: inline-block;
  align-self: flex-start;
  margin: 4px 0;
  padding: 2px 5px;
  border: 1px solid #ffe08a;
  border-radius: 3px;
  background: #fff8db;
  color: #8a6d1d;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.product-name {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  height: 68.85px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 6px;
  margin-top: auto;
}
.price-group {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.price-main {
  color: var(--accent-strong);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
}
.price-tax {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(auto-fit, 210px); }
  .store-pill { font-size: 16px; padding: 10px 14px; }
  .notice { font-size: 15px; }
  .category-grid { grid-auto-columns: calc((100vw - 110px) / 6); gap: 14px; justify-content: start; }
  .category-label { font-size: 18px; }
  .section-title { font-size: 30px; margin-bottom: 18px; }
  .product-name { font-size: 17px; }
  .price-main { font-size: 24px; }
  .price-tax { font-size: 12px; }
  .order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 50px !important;
    height: 46px !important;
    padding: 0 14px;
    border: 0;
    border-radius: 20px;
    background: #ff7f63;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    width: auto;
    max-width: none;
    position: static;
    margin-left: 6px;
    flex: 0 0 auto;
    align-self: flex-end;
  }
  .bottom-image { width: 100%; margin-left: 0; margin-right: 0; }
  .app { width: 100%; max-width: none; }
  .content-wrap { max-width: 1100px; margin: 0 auto; padding: 0 10px 0; }
  .store-pill { margin-top: 14px; }
  /* 最小6個ぴったり、幅を広げたら固定サイズのまま列を増やして表示（間延び防止） */
  .category-grid { grid-auto-columns: min(calc((100% - 80px) / 6), 120px); gap: 16px; overflow-x: auto; padding-bottom: 6px; justify-content: start; }
  .category-strip::before, .category-strip::after { display: block; }
  .category-card { gap: 10px; }
  .category-icon { width: 90%; height: 90%; border-radius: 0; background: none; border: none; box-shadow: none; font-size: 46px; }
  .category-label { font-size: 20px; }
  .section-title { font-size: 34px; }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
}

@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(auto-fit, 220px); }
}

@media (min-width: 1400px) {
  .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.order-button--soldout {
  background: #aaa !important;
  color: #fff !important;
  cursor: default !important;
  pointer-events: none !important;
}

/* Force square thumbnails on product cards */
.product-card .product-image {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
}
.product-card .product-image img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* Keep content directly under header tools */
.content-wrap { transform: none !important; }
.category-strip { margin-top: 14px !important; }
.category-strip + .section { margin-top: 0 !important; }
.popular-products-section { margin-top: 0 !important; }
.popular-products-section .section-title { margin-bottom: 15px !important; }
.popular-products-section .product-grid { margin-bottom: 18px; }
.popular-products-section .product-grid + .section-title { margin-top: 14px; }

@media (max-width: 1023px) {
  .content-wrap { transform: none !important; margin-top: 0 !important; }
}


.popular-title-link {
  color: inherit;
  text-decoration: underline;
}
.popular-title-link:hover {
  text-decoration: underline;
}
.popular-title-icon {
  width: 1.25em !important;
  height: 1.25em !important;
  margin-left: 6px;
  object-fit: cover;
  flex: 0 0 auto;
  display: inline-block !important;
  vertical-align: middle !important;
  max-width: none !important;
  position: relative;
  top: 1px !important;
  left: 0;
}

@media (min-width: 768px) {
  .popular-title-icon {
    width: 1.5em !important;
    object-fit: contain;
    object-position: center;
  }
}

.show-more-wrap {
  text-align: center;
  margin: 16px 0 8px;
}
.show-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 135px;
  max-width: 135px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  letter-spacing: .05em;
  transition: background .15s;
}
.show-more-btn:hover,
.show-more-btn:active {
  background: #fafafa;
  color: #333;
}

@media (max-width: 767px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .empty-products-message { font-size: 13px; }
  .category-return-wrap { margin: 2px 0 22px; }
  .category-return-button { min-width: 188px; height: 40px; font-size: 16px; }
  .product-card { border-radius: 16px; border: 1px solid #d9d9d9; box-shadow: none; }
  .favorite-toggle-form { top: 6px; right: 6px; }
  .favorite-badge {
    top: 0; right: 0; width: 26px; height: 26px; font-size: 14px;
    cursor: pointer; border: 1px solid #c8c8c8; background: #f7f7f7; box-shadow: none;
  }
  .product-image { aspect-ratio: 1 / 1; border-bottom: 1px solid #d5d5d5; }
  .product-image img { padding: 0; object-fit: contain; }
  .product-image img.fit-contain,
  .product-image img.fit-safe { inset: 0; width: 100%; height: 100%; max-width: none; max-height: none; object-fit: contain; }
  .product-body { padding: 6px 7px 6px; background: #fff; }
  .product-name { font-size: 14px; font-weight: 700; line-height: 1.25; height: 33px; margin-bottom: 4px; -webkit-line-clamp: 2; line-clamp: 2; overflow-wrap: anywhere; }
  .price-row { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 40px; column-gap: 6px; align-items: end; min-height: 0; margin-top: 3px; }
  .price-group { min-width: 0; width: 100%; display: flex; flex-direction: column; justify-content: flex-start; padding-right: 0 !important; transform: none; overflow: hidden; }
  .price-main { font-size: 18px; line-height: 1; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; }
  .price-tax { margin-top: 5px; font-size: 10px; font-weight: 700; color: #666; line-height: 1.2; white-space: nowrap; overflow: hidden; }
  .order-button {
    display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box;
    min-width: 40px; height: 28px; padding: 0 6px; border: 0; border-radius: 10px;
    background: #ff7f63; color: #fff; font-size: 14px; font-weight: 700; line-height: 1;
    white-space: nowrap; width: auto; max-width: none; position: static;
    margin-left: 0; margin-top: 0; flex: 0 0 auto; align-self: flex-end;
  }
  .content-wrap { transform: none !important; }
  .category-strip { margin-top: 12px !important; }
  .category-strip + .section { margin-top: 0 !important; }
  .popular-products-section { margin-top: 0 !important; }
  .popular-products-section .section-title { margin-bottom: 15px !important; }
  .popular-products-section .product-grid { margin-bottom: 14px; }
  .popular-products-section .product-grid + .section-title { margin-top: 10px; }
  .popular-title-icon { width: 30px !important; height: 25px !important; margin-left: 6px !important; image-rendering: auto !important; image-rendering: -webkit-optimize-contrast !important; }
  .show-more-btn { min-width: 130px; max-width: 130px; height: 40px; font-size: 13px; }

  @media (max-width: 429px) {
    .product-body {
      padding: 6px 6px 6px;
    }
    .price-row {
      grid-template-columns: minmax(0, 1fr) 40px;
      column-gap: 3px;
    }
    .price-group {
      min-width: 0;
      overflow: hidden;
    }
    .price-main {
      font-size: 16px;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }
    .price-tax {
      font-size: 10px;
      white-space: nowrap;
    }
    .order-button {
      width: 100%;
      min-width: 0;
      max-width: 40px;
      height: 26px;
      padding: 0 2px;
      font-size: 11px;
      border-radius: 8px;
    }
  }
}

@media (max-width: 520px) {
  .content-wrap { padding: 0 10px 0; }
  .category-grid { grid-auto-flow: column; grid-auto-columns: calc((100vw - 35px) / 6); gap: 3px; overflow-x: auto; overflow-y: hidden; padding-bottom: 10px; justify-items: stretch; justify-content: start; }
  .category-strip { margin-bottom: 14px; }
  .category-nav-btn { width: 36px; height: 36px; font-size: 22px; }
  .category-nav-btn.left { left: -2px; }
  .category-nav-btn.right { right: -2px; }
  .category-icon { width: 90%; height: 90%; font-size: 30px; margin-top: 0; background: none; border: none; box-shadow: none; border-radius: 0; }
  .category-label { font-size: 11px; line-height: 1.2; min-height: 2.4em; text-align: center; white-space: normal; word-break: break-word; overflow-wrap: anywhere; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
}

@media (max-width: 400px) {
  .content-wrap { padding: 0 8px 0; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
}

/* Banner slots */
.pm-banner-section {
  margin: 8px 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.pm-banner-section img {
  width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
}
.pm-banner-section a {
  display: block;
}
.pm-banner-section--top {
  margin-bottom: 4px;
}
.pm-banner-section--bottom {
  margin-top: 16px;
}
.pm-banner-swiper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  touch-action: pan-y;
}
.pm-banner-swiper .swiper-slide {
  touch-action: pan-y;
}
.pm-banner-swiper .swiper-slide a {
  display: block;
  pointer-events: none;
}
.pm-banner-swiper.swiper-initialized .swiper-slide a {
  pointer-events: auto;
}
.pm-banner-swiper .swiper-slide img {
  width: 100%;
  border-radius: 0;
  pointer-events: none;
}
.pm-banner-swiper .swiper-pagination-bullet-active {
  background: #e60012;
}

@media (max-width: 991px) {
  .category-return-button {
    width: 100% !important;
    max-width: 378px;
    min-height: 44px;
    border: 0 !important;
    border-radius: 6px !important;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.4rem 0.75rem !important;
    gap: 0;
  }
  .category-return-button--top {
    width: 100% !important;
    max-width: 378px;
    min-height: 44px;
    border: 0 !important;
    border-radius: 6px !important;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.4rem 0.75rem !important;
    gap: 0;
    background: #c9454b !important;
  }
}

/* SweetAlert2 custom design — matches net_super_shop_cart */
.swal2-popup {
  text-align: center;
  background-color: #f2f2f2 !important;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);
}
.swal2-title {
  font-size: 1.1em !important;
}
.swal2-html-container {
  font-size: 1em !important;
  text-align: left !important;
}
.swal2-confirm,
.swal2-deny,
.swal2-cancel {
  margin: 5px;
  color: #fff !important;
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  width: 100px;
  min-width: 100px;
}
.net-super-browse-mode .favorite-toggle-form {
  display: none !important;
}
.swal2-popup.net-super-browse-popup {
  width: min(92vw, 360px);
  padding: 24px 20px 20px;
  border: 1px solid #a9cbd8;
  border-radius: 10px;
  background-color: #c4eaf9 !important;
}
.swal2-title.net-super-browse-popup-title {
  width: 100%;
  padding: 6px 4px 8px;
  color: #f05a62;
  background-color: transparent;
  font-size: 1.1rem !important;
  font-weight: 700;
  line-height: 1.45;
  box-sizing: border-box;
}
.swal2-html-container.net-super-browse-popup-body {
  margin: 14px 0 0;
  color: #333;
  font-size: 0.94rem !important;
  font-weight: 600;
  line-height: 1.75;
  text-align: center !important;
}
.net-super-browse-popup-mascot {
  display: block;
  width: 88px;
  height: auto;
  margin: 22px auto 4px;
}
.swal2-actions .net-super-browse-popup-close {
  width: auto;
  min-width: 150px;
  padding: 9px 28px;
  border: 2px solid #aaa !important;
  border-radius: 50px;
  background-color: #fff !important;
  color: #333 !important;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
}
.swal2-actions .net-super-quantity-limit-button {
  width: auto;
  min-width: 150px;
  padding-right: 18px;
  padding-left: 18px;
  white-space: nowrap;
}
.swal2-title.net-super-sold-out-title {
  width: 100%;
  padding: 14px 12px;
  background-color: #e9ecef;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .category-strip,
  .section,
  .pm-banner-section,
  .category-return-wrap {
    width: 56vw;
    max-width: 760px;
    min-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .section .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .category-return-button,
  .category-return-button--top {
    width: 100% !important;
    max-width: none;
    min-height: 44px;
    border: 0 !important;
    border-radius: 6px !important;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3) !important;
    font-size: 18px !important;
    padding: 0.4rem 0.75rem !important;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .category-return-button,
  .category-return-button:hover,
  .category-return-button:focus,
  .category-return-button:active {
    background: #7f7070 !important;
    color: #fff !important;
  }

  .category-return-button--top,
  .category-return-button--top:hover,
  .category-return-button--top:focus,
  .category-return-button--top:active {
    background: #c9454b !important;
    color: #fff !important;
  }
}
.swal2-icon,
.swal2-image,
.swal2-progress-steps,
.swal2-range,
.swal2-select,
.swal2-radio,
.swal2-checkbox,
.swal2-input,
.swal2-file,
.swal2-validation-message,
.swal2-timer-progress-bar-container {
  display: none !important;
}
