@charset "UTF-8";

.top-hero {
  border-color: #eadfcb;
  background: linear-gradient(150deg, #fff7ea 0%, #f4ecdd 58%, #efe5d4 100%);
}

.top-hero .section-inner {
  padding-top: 16px;
}

.top-hero-lead {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #8a7250;
}

.top-hero h2 {
  margin: 8px 0 0;
  padding: 0;
  font-size: clamp(17px, 5.8vw, 30px);
  line-height: 1.18;
  letter-spacing: 0;
  white-space: nowrap;
}

.top-hero-copy {
  margin: 10px 0 0;
  font-size: 13px;
  color: #5f513c;
}

.top-hero-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.top-category-strip .section-inner {
  padding-top: 4px;
}

.top-category-accordion {
  display: grid;
  gap: 8px;
}

.top-acc-item {
  border: 1px solid #e4dac7;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f9f5ec);
  overflow: hidden;
}

.top-acc-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  min-height: 48px;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.top-acc-title {
  font-size: 15px;
  font-weight: 700;
  color: #51432e;
}

.top-acc-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.top-acc-icon:before,
.top-acc-icon:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #725835;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.top-acc-icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.top-acc-item.is-open .top-acc-icon:after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.top-acc-panel {
  border-top: 1px solid #eadfcb;
  background: rgba(255, 255, 255, 0.55);
}

.top-acc-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.top-acc-panel li {
  border-top: 1px solid #efe6d7;
}

.top-acc-panel li:first-child {
  border-top: 0;
}

.top-acc-panel a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  color: #5b4a34;
}

.top-acc-panel li:first-child a {
  font-weight: 700;
  color: #6b3d17;
}

.top-info .section-inner {
  font-size: 13px;
  color: #4f4433;
}

.top-products .section-inner {
  padding-top: 4px;
}

.top-slider .slide {
  padding: 0 4px;
}

.top-slider .slide-inner {
  min-height: 100%;
}

.top-slider .slick-dots {
  position: static;
  display: flex !important;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
}

.top-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.top-slider .slick-dots li button {
  width: 7px;
  height: 7px;
  padding: 0;
}

.top-slider .slick-dots li button:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7c9af;
  opacity: 1;
}

.top-slider .slick-dots li.slick-active button:before {
  background: #8f6e42;
}

.top-new-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 420px) {
  .top-hero h2 {
    font-size: clamp(17px, 5.8vw, 26px);
  }

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

  .top-acc-title {
    font-size: 14px;
  }
}


/* PC refresh */
@media (min-width: 768px) {
  .top-hero .section-inner {
    padding-top: 18px;
    padding-bottom: 16px;
  }

  .top-hero-lead {
    font-size: 10px;
  }

  .top-hero h2 {
    font-size: clamp(22px, 2.4vw, 32px);
    white-space: normal;
  }

  .top-hero-copy {
    max-width: 560px;
    font-size: 13px;
    line-height: 1.55;
  }

  .top-hero-actions {
    width: min(320px, 100%);
    gap: 8px;
  }

  .top-category-strip .section-inner,
  .top-products .section-inner {
    padding-top: 10px;
  }

  .top-category-accordion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .top-acc-trigger {
    min-height: 48px;
    padding: 10px 12px;
  }

  .top-acc-title {
    font-size: 14px;
  }

  .top-acc-panel a {
    padding: 8px 12px;
    font-size: 12px;
  }

  .top-slider .slide {
    padding: 0 4px;
  }

  .top-new-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .top-new-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
