.yibo_whole_home_storage {
  background: var(--bg-color);
  overflow: hidden;
  padding: var(--component-gap) 0;
}

.yibo_whole_home_storage-main {
  align-items: center;
  display: grid;
  gap: var(--component-gap);
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
}

.yibo_whole_home_storage-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--text-gap-md);
}

.yibo_whole_home_storage-title {
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--title-size);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}

.yibo_whole_home_storage-desc {
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--text-size-md);
  font-weight: 400;
  line-height: 1.4118;
}

.yibo_whole_home_storage-desc :is(p) {
  margin: 0;
}

.yibo_whole_home_storage-btn {
  margin-top: calc(var(--text-size-md) * 2);
}


.yibo_whole_home_storage-visual {
  aspect-ratio: 808 / 720;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

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

.yibo_whole_home_storage-steps {
  display: grid;
  gap: calc(var(--text-gap-md) * 2);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--component-gap-md);
  position: relative;
  --icon-size: clamp(90px, 9.375vw, 180px);
}

.yibo_whole_home_storage-steps-line {
  background: var(--color-primary);
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: calc(var(--icon-size) / 2);
}

.yibo_whole_home_storage-step {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.yibo_whole_home_storage-step:not(:last-child)::after {
  content: "";
  height: clamp(6px, 0.625vw, 12px);
  aspect-ratio: 3/1;
  position: absolute;
  right: 0;
  top: calc(var(--icon-size) / 2);
  transform: translate(50%,-50%);
  background-image: url('https://okki-shop.oss-accelerate.aliyuncs.com/templates/shop-default/a62ceb6f-ebad-4eae-bbb7-f11b54f61150-1000010481_1786513244359.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.yibo_whole_home_storage-step-icon-wrap {
  align-items: center;
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  margin-bottom: var(--text-gap-xs);
  position: relative;
  min-width: var(--icon-size);
  aspect-ratio: 1;
  z-index: 1;
}

.yibo_whole_home_storage-step-icon-wrap::before,
.yibo_whole_home_storage-step-icon-wrap::after {
  border: 1px solid #FFFAF4;
  border-radius: 50%;
  content: "";
  inset: clamp(8px, 0.7vw, 10px);
  position: absolute;
}

.yibo_whole_home_storage-step-icon-wrap::after {
  inset: 0;
  border: 1px dashed #FFFAF4;
}

.yibo_whole_home_storage-step-icon {
  align-items: center;
  background: #fffaf4;
  border-radius: 50%;
  display: inline-flex;
  height: 76.5%;
  justify-content: center;
  width: 76.5%;
}

.yibo_whole_home_storage-step-icon img {
  display: block;
  height: 34.65%;
  object-fit: contain;
  width: 34.65%;
  filter: brightness(0);
}

.yibo_whole_home_storage-step-title {
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--text-size);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.yibo_whole_home_storage-step:hover .yibo_whole_home_storage-step-title {
  color: var(--color-primary);
}

.yibo_whole_home_storage-step:hover .yibo_whole_home_storage-step-icon img {
  filter: invert(31%) sepia(98%) saturate(1450%) hue-rotate(14deg) brightness(95%) contrast(102%);
  -webkit-filter: invert(31%) sepia(98%) saturate(1450%) hue-rotate(14deg) brightness(95%) contrast(102%);
}

.yibo_whole_home_storage-step-desc {
  color: var(--title-text-color);
  font-family: var(--font-family);
  font-size: var(--text-size-md);
  font-weight: 400;
  line-height: 1.4118;
  margin: var(--text-gap-xs) auto 0;
}

@media screen and (max-width: 991px) {
  .yibo_whole_home_storage-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .yibo_whole_home_storage-steps {
    gap: var(--component-gap-xs);
    grid-template-columns: minmax(0, 1fr);
  }

  .yibo_whole_home_storage-steps-line {
    height: auto;
    right: auto;
    left: calc(var(--icon-size) / 2);
    bottom: 0;
    top: 0;
    width: 1px;
  }


  .yibo_whole_home_storage-step {
    align-items: flex-start;
    flex-direction: row;
    text-align: left;
    gap: var(--component-gap-xs);
  }

  .yibo_whole_home_storage-step:not(:last-child)::after {
    display: none;
  }


  .yibo_whole_home_storage-step-copy {
    align-self: center;
  }

  .yibo_whole_home_storage-step-desc {
    margin-left: 0;
    max-width: none;
  }
}