/* Mall — 部品を探す（蓝湖 image_id=1672edb6） */
.mall-page {
  padding: 0 0 0;
  overflow: hidden;
}

.mall-sec-head {
  margin-bottom: 40px;
}

.mall-sec-head.center {
  text-align: center;
}

.mall-sec-head h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.35;
  color: #111;
  text-align: center;
}

.mall-sec-head p {
  margin-top: 16px;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== Hero：整图全宽，高度随图片比例；文案+搜索叠在 Banner 内 ===== */
.mall-hero {
  position: relative;
  /* 为下探的搜索卡预留空间（约半高） */
  margin-bottom: 100px;
  overflow: visible;
  background: transparent;
  z-index: 1;
  line-height: 0;
}

.mall-hero-media {
  display: block;
  width: 100%;
  line-height: 0;
  aspect-ratio: 1920 / 980;
  background: #f4f4f4;
}

.mall-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.mall-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 11% 0 3.2%;
  box-sizing: border-box;
  line-height: 1.6;
  pointer-events: none;
}

.mall-hero-inner {
  /* max-width: 640px; */
  color: #111;
  pointer-events: auto;
}

.mall-hero-inner h1 {
  font-size: clamp(32px, 2.9vw, 56px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.4vw;
}

.mall-hero-bars {
  display: grid;
  gap: 0.7vw;
  margin-bottom: 1.4vw;
}

.mall-hero-inner span {
  display: flex;
  font-size: clamp(15px, 1.15vw, 22px);
  line-height: 1.7;
  font-weight: 400;
  max-width: 560px;
  width: fit-content;
  /* 背景不占整行，只占文本宽度 */
  background: #ffd84d;
  margin-bottom: 10px;
  padding: 0 20px 0 30px;
}

/* ===== Search card（叠在 Banner 底部内） ===== */
.mall-search-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0;
  pointer-events: auto;
  overflow: visible;
  /* 下半部分探出 Banner，高度随屏宽变化 */
  /* transform: translateY(42%); */
  margin-top: 400px;
}

.mall-search-card {
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 48px 72px 56px;
  max-width: 1301px;
  margin: 0 auto;
  z-index: 9;
}

/* 白底卡片层：盖住装饰图落在卡内的部分，只露出探出卡外的部分 */
.mall-search-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #000;
  box-shadow: 0 13px 0 rgba(26, 15, 5, 0.14);
  pointer-events: none;
}

.mall-search-deco {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
}

/* 左上角色：沉到白底后面，只露头顶/上半身 */
.mall-search-deco-tl {
  width: clamp(128px, 9.5vw, 284px);
  top: -6.8vw;
  left: 0;
  z-index: 0;
}

.mall-search-deco-tr {
  width: clamp(88px, 8.4vw, 150px);
  top: -2.2vw;
  right: -3.2vw;
  z-index: 4;
}

.mall-search-deco-bl {
  width: clamp(100px, 10vw, 176px);
  bottom: -4.6vw;
  left: -5vw;
  z-index: 4;
}

.mall-search-card>*:not(.mall-search-deco) {
  position: relative;
  z-index: 2;
}

.mall-search-card h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
}

.mall-search-card .sub {
  text-align: center;
  color: #333;
  margin-bottom: 36px;
  font-size: 16px;
}

.mall-search-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.mall-search-bar input {
  flex: 1;
  height: 52px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 15px;
}

.mall-search-bar .btn-search {
  min-width: 160px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a5f, var(--red));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* ===== Register ===== */
.mall-register {
  padding: 0 0 40px;
}

.mall-register-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.mall-register-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 8px;
  position: absolute;
  top: 140px;
  left: 280px;
}

.mall-register-copy h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
}

.mall-register-copy p {
  color: #333;
  font-size: 16px;
  margin-bottom: 28px;
}

.mall-register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 318px;
  height: 54px;
  border-radius: 999px;
  background: #ffd84d;
  color: #111;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
}

.mall-register-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.mall-register-circle {
  width: min(520px, 100%);
  height: auto;
}

.mall-register-phone {
  position: absolute;
  width: min(420px, 88%);
  left: 0;
  top: 32%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

/* ===== LINE CTA（对齐首页 contact-duo：黄电话卡 + 绿 LINE） ===== */
.mall-yellow-band {
  position: relative;
  background: url("../assets/home/reasons-section-bg.png") center 40px / 100% auto no-repeat;
}

.mall-line-cta {
  padding: 156px 0 64px;
}

.mall-contact-duo {
  display: grid;
  grid-template-columns: minmax(0, 868fr) minmax(0, 421fr);
  gap: 24px;
  align-items: center;
}

.mall-phone-card,
.mall-line-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: inherit;
  overflow: visible;
}

.mall-phone-card-bg {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.mall-phone-card-body {
  position: absolute;
  left: 6%;
  top: 21%;
  bottom: 16%;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  max-width: 80%;
  width: 100%;
  line-height: 1.2;
}

.mall-phone-card-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.mall-phone-card .label {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.mall-phone-card .num {
  font-size: clamp(36px, 2.6vw, 42px);
  font-weight: 900;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
}

.mall-phone-card .num img {
  width: 46px;
  height: 40px;
  flex-shrink: 0;
}

.mall-phone-card .hours {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  line-height: 1.2;
  border: 2px solid #111;
}

.mall-line-card-deco {
  position: absolute;
  top: -156px;
  left: 50%;
  transform: translateX(-50%);
  width: 147px;
  height: 156px;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.mall-line-card-inner {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 8%;
  color: #fff;
  font-size: clamp(18px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  background: linear-gradient(-12deg, #00ca85, #19ef6f);
  box-shadow: 6px 12px 0 rgba(0, 0, 0, 0.42);
  border-radius: 64px;
  border: 2px solid #fff;
  height: 128px;
  box-sizing: border-box;
}

.mall-line-card-inner img.icon {
  width: 52px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* ===== Categories ===== */
.mall-cats {
  padding: 64px 0 80px;
  position: relative;
  background: url("../assets/mall/cat-bg.png") no-repeat;
  background-position: 0 220px;
}

.mall-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 126px 28px;
  margin-top: 120px;
}

.mall-category-item {
  position: relative;
  text-align: center;
  padding: 88px 18px 28px;
  border: 2px solid #ffb8b6;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 13px 0 rgba(26, 15, 5, 0.14);
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 220px;
}

.mall-category-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 0 rgba(26, 15, 5, 0.16);
}

.mall-category-item .thumb {
  position: absolute;
  left: 50%;
  top: -72px;
  transform: translateX(-50%);
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 13px 0 rgba(26, 15, 5, 0.14);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mall-category-item .thumb img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.mall-category-item strong {
  display: block;
  color: #ff4d47;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  margin-top: 54px;
}

.mall-category-item span {
  display: block;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Confirm ===== */
.mall-confirm {
  padding: 80px 0 64px;
  overflow: visible;
}

.mall-confirm-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 200px;
}

.mall-confirm-copy h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 24px;
}

.mall-confirm-copy h2 span {
  color: #ff4e48;
}

.mall-confirm-copy p {
  color: #111;
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
}

.mall-confirm-visual {
  position: relative;
}

.mall-confirm-visual-bg {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* 蓝湖：右上角「部品選びが安心」气泡 */
.mall-confirm-bubble {
  position: absolute;
  width: 46%;
  max-width: 293px;
  top: -22%;
  left: 42%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

.mall-confirm-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 100px;
}

.mall-confirm-steps article {
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 12px 16px;
  box-shadow: none;
}

.mall-confirm-steps .num {
  display: inline-block;
  font-size: 40px;
  font-weight: 900;
  color: #ff4d47;
  line-height: 1;
  margin-bottom: 0;
}

/* 蓝湖：番号下红色短横线 */
.mall-confirm-steps .num::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: #ff4d47;
  margin: 12px auto 0;
}

.mall-confirm-steps h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 16px 0 14px;
}

.mall-confirm-steps p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Values ===== */
.mall-values {
  padding: 72px 0 80px;
  background: transparent;
}

.mall-values-line {
  display: block;
  width: min(520px, 70%);
  margin: 20px auto 8px;
}

.mall-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  margin-top: 48px;
}

.mall-values-grid article {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

.mall-values-grid img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.mall-values-text .num {
  display: inline-block;
  min-width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background: #ff4d47;
  color: #fff;
  font-weight: 900;
  margin-bottom: 8px;
}

.mall-values-text h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}

.mall-values-text p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
}

/* ===== Products ===== */
.mall-products-section {
  padding: 24px 0 72px;
}

.mall-products-section h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
}

.mall-result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.mall-result-head .count {
  font-size: 14px;
  color: #666;
  font-weight: 700;
}

/* ===== Stock ===== */
.mall-stock {
  padding: 64px 0 80px;
  position: relative;
}

.mall-stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mall-stock-grid article {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #eee;
  padding: 18px 18px 28px;
  text-align: center;
  box-shadow: 0 10px 0 rgba(26, 15, 5, 0.08);
}

.mall-stock-media {
  min-height: 220px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.mall-stock-media img {
  max-width: 100%;
  height: auto;
}

.mall-stock-grid h3 {
  display: inline-block;
  min-width: 160px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffd84d;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
}

.mall-stock-grid article:nth-child(2) h3 {
  background: #ff6a5f;
  color: #fff;
}

.mall-stock-grid article:nth-child(3) h3 {
  background: #06c755;
  color: #fff;
}

.mall-stock-grid p {
  color: #333;
  font-size: 15px;
  line-height: 1.75;
  padding: 0 8px;
}

/* ===== B2B + Stock：淡粉色从 B2B 中部向下延到库存区 ===== */
.mall-pink-band {
  position: relative;
}

.mall-pink-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 340px;
  height: 1646px;
  background: url("../assets/mall/cat-bg.png") center top / 100% auto no-repeat;
  pointer-events: none;
  z-index: 0;
}

.mall-pink-band>.mall-b2b,
.mall-pink-band>.mall-stock {
  position: relative;
  z-index: 1;
}

/* ===== B2B ===== */
.mall-b2b {
  position: relative;
  padding: 88px 0 96px;
  color: #fff;
  overflow: hidden;
}

.mall-b2b::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/mall/b2b-bg.png") top / cover no-repeat;
  pointer-events: none;
}

.mall-b2b-inner {
  position: relative;
  z-index: 1;
}

.mall-b2b h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 18px;
}

.mall-b2b-lead {
  font-size: 16px;
  line-height: 1.8;
  max-width: 820px;
  margin-bottom: 36px;
  opacity: 0.98;
}

.mall-b2b-body {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.mall-b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  flex: 1;
  max-width: 860px;
  margin-bottom: 0;
}

.mall-b2b-grid article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 18px 16px 16px;
  min-height: 120px;
}

.mall-b2b-grid img {
  width: 48px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.mall-b2b-grid h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 6px;
}

.mall-b2b-grid p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.mall-b2b-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 458px;
  max-width: 100%;
  height: 102px;
  padding: 0 25px 0 56px;
  border: 2px solid #fff;
  border-radius: 51px;
  background: linear-gradient(-12deg, #ffd115, #ffe478);
  box-shadow: 6px 12px 0 rgba(0, 0, 0, 0.42);
  color: #111;
  font-weight: 900;
  font-size: 24px;
  text-decoration: none;
  box-sizing: border-box;
  flex-shrink: 0;
  margin-left: auto;
}

.mall-b2b-cta-label {
  line-height: 1.2;
  white-space: nowrap;
  text-align: left;
}

.mall-b2b-cta-arrow {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mall-b2b-cta-arrow .iconfont {
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

/* ===== FAQ + Bottom CTA（对齐首页） ===== */
.mall-faq-section {
  position: relative;
  z-index: 2;
  padding: 0;
  margin-top: 0;
}

.mall-faq-section .faq-box {
  background: #ffd84d;
  border-radius: 10px;
  padding: 56px 48px 48px;
  box-shadow: 0 21px 0 rgba(26, 15, 5, 0.25);
}

.mall-faq-section .faq-box h2 {
  font-size: 50px;
  margin-bottom: 28px;
  font-weight: 900;
}

.mall-faq-section .faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
}

.mall-faq-section .faq-item.open {
  border: 2px solid #111;
}

.mall-faq-section .faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #f65a63;
  min-height: 70px;
  box-sizing: border-box;
}

.mall-faq-section .faq-q .toggle {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4f4f4;
  color: #333;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.mall-faq-section .faq-a {
  display: none;
  padding: 0 28px 28px 36px;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

.mall-faq-section .faq-item.open .faq-a {
  display: block;
}

/* Bottom CTA：对齐首页 home.html .bottom-cta */
.mall-faq-section .bottom-cta {
  margin-top: 80px;
  background-color: #ff413d;
  background-image: url("../assets/home/bottom-cta-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  border-radius: 0;
}

.mall-faq-section .bottom-inner {
  position: relative;
  display: block;
  min-height: 400px;
  height: 400px;
  box-sizing: border-box;
  padding: 96px 0 72px 220px;
}

.mall-faq-section .bottom-inner .mascot {
  width: 400px;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-42%);
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}

.mall-faq-section .bottom-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-left: 0;
}

.mall-faq-section .bottom-copy {
  padding-left: 0;
  flex: 1;
  min-width: 0;
}

.mall-faq-section .bottom-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.mall-faq-section .bottom-inner h2 {
  position: relative;
  z-index: 1;
  font-size: 36px;
  margin: 0 0 12px;
  font-weight: 900;
  line-height: 1.25;
}

.mall-faq-section .bottom-inner p {
  position: relative;
  z-index: 1;
  font-size: 16px;
  margin: 0;
  opacity: 0.96;
  line-height: 1.6;
  max-width: 780px;
}

.mall-faq-section .big-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.mall-faq-section .big-text-wrap {
  display: flex;
  margin-top: 30px;
  align-items: center;
  padding-left: 30px;
}

.mall-faq-section .big-text-label {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-right: 20px;
}

.mall-faq-section .big-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.1;
  min-width: 0;
}

.mall-faq-section .phone-num {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 53px;
  color: #fff;
}

.mall-faq-section .phone-num img {
  width: 37px;
  height: 41px;
  flex-shrink: 0;
  object-fit: contain;
  margin-right: 10px;
}

.mall-faq-section .big-hours {
  display: block;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  opacity: 0.95;
  white-space: nowrap;
}

.mall-faq-section .bottom-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 304px;
  max-width: 100%;
  height: 68px;
  padding: 0 18px 0 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.mall-faq-section .bottom-btn-yellow {
  color: #111;
  margin-top: 4px;
  background: linear-gradient(-12deg, #ffd115, #ffe478);
  box-shadow: 6px 12px 0 rgba(0, 0, 0, 0.42);
  border-radius: 34px;
  border: 2px solid #fff;
}

.mall-faq-section .bottom-btn-green {
  color: #fff;
  background: linear-gradient(-12deg, #00ca85, #19ef6f);
  box-shadow: 6px 12px 0 rgba(0, 0, 0, 0.42);
  border-radius: 34px;
  border: 2px solid #fff;
  margin-top: 34px;
}

.mall-faq-section .bottom-btn-ico {
  width: 23px;
  height: 22px;
  flex-shrink: 0;
  margin-right: 8px;
  object-fit: contain;
}

.mall-faq-section .bottom-btn-label {
  flex: 1;
  text-align: left;
  white-space: nowrap;
}

.mall-faq-section .bottom-btn-arrow {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mall-faq-section .bottom-btn-arrow .iconfont {
  font-size: 12px;
  line-height: 1;
}

.mall-faq-section .bottom-btn-yellow .bottom-btn-arrow {
  background: #111;
}

.mall-faq-section .bottom-btn-green .bottom-btn-arrow {
  background: #fff;
}

.mall-faq-section .bottom-btn-green .bottom-btn-arrow i {
  color: #111;
}

.mall-faq-section .bottom-btn-yellow .bottom-btn-arrow i {
  color: #fff;
}

@media (max-width: 1100px) {
  .mall-hero-content {
    padding: 14% 0 2.5%;
  }

  .mall-search-wrap {
    transform: translateY(48%);
  }

  .mall-search-deco-tl {
    left: -2vw;
    top: -3vw;
  }

  .mall-search-deco-tr {
    right: -1.5vw;
  }

  .mall-search-deco-bl {
    left: -2.5vw;
  }

  .mall-cat-grid,
  .mall-values-grid,
  .mall-stock-grid,
  .mall-confirm-steps,
  .mall-confirm-inner,
  .mall-register-inner,
  .mall-b2b-grid,
  .mall-contact-duo {
    grid-template-columns: 1fr 1fr;
  }

  .mall-confirm-bubble {
    width: 42%;
    top: -18%;
    left: auto;
    right: -2%;
  }

  .mall-line-card-deco {
    top: -120px;
    width: 112px;
    height: 120px;
  }

  .mall-faq-section .bottom-inner {
    height: auto;
    min-height: 0;
    padding: 40px 16px 48px;
    text-align: center;
  }

  .mall-faq-section .bottom-inner .mascot {
    position: static;
    transform: none;
    width: min(280px, 70%);
    height: auto;
    margin: 0 auto 16px;
    display: block;
  }

  .mall-faq-section .bottom-top {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }

  .mall-faq-section .bottom-copy {
    padding-left: 0;
  }

  .mall-faq-section .bottom-actions {
    align-items: center;
  }

  .mall-faq-section .big-text-wrap {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    margin-top: 24px;
  }

  .mall-faq-section .big-text-label {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .mall-faq-section .phone-num {
    font-size: 36px;
    justify-content: center;
  }

  .mall-faq-section .big-hours {
    text-align: center;
  }

  .mall-b2b-body {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .mall-hero-content {
    padding: 18% 0 2%;
  }

  .mall-search-wrap {
    transform: translateY(36%);
  }

  .mall-search-deco {
    display: none;
  }

  .mall-search-card {
    padding: 28px 18px 32px;
  }

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

  .mall-search-bar .btn-search {
    width: 100%;
  }

  .mall-cat-grid,
  .mall-values-grid,
  .mall-stock-grid,
  .mall-confirm-steps,
  .mall-confirm-inner,
  .mall-register-inner,
  .mall-b2b-grid,
  .mall-contact-duo {
    grid-template-columns: 1fr;
  }

  .mall-line-cta {
    padding: 32px 0 48px;
  }

  .mall-line-card-deco {
    display: none;
  }

  .mall-line-card-inner {
    height: 96px;
    border-radius: 48px;
    font-size: 18px;
    white-space: normal;
  }

  .mall-phone-card .num {
    font-size: 28px;
  }

  .mall-b2b-cta {
    width: 100%;
    height: 80px;
    font-size: 18px;
    padding: 0 20px 0 28px;
  }

  .mall-b2b-cta-arrow {
    width: 36px;
    height: 36px;
  }

  .mall-sec-head h2,
  .mall-b2b h2,
  .mall-confirm-copy h2,
  .mall-register-copy h2,
  .mall-faq-section .faq-box h2 {
    font-size: 28px;
  }

  .mall-category-item {
    margin-top: 48px;
  }
}