.main-header {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  background-color: #ffffff90;
  backdrop-filter: blur(30px);
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99;
}

.main-header a {
  display: flex;
  padding: 8px;
  margin: 0 8px;
}

.main-header a:first-child {
  margin-left: 0;
  padding-left: 0;
}

.cart-badge {
  min-width: 16px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-100);
  color: var(--white);
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
  padding: 0 4px;
  border-radius: 8px;
  border: 1px solid white;
}

/* 배너 캐러셀 */
.carousel {
  position: relative;
}

.carousel-inner {
  border-radius: 20px;
  overflow: hidden;
}

.carousel-count {
  padding: 6px 12px;
  font-size: 12px;
  background-color: #22204080;
  color: var(--black-10);
  border-radius: 16px;
  position: absolute;
  bottom: 16px;
  right: 16px;
}

/* 카테고리 Y스크롤 섹션 */
.category-section {
  max-width: 600px;
  padding: 16px 0;
}

.category-list {
  display: flex;
  margin: 0 16px;
}

.category-item {
  flex: 0 0 auto;
  margin-right: 12px;
}

.category-item:last-child {
  padding-right: 16px;
}

.category-img {
  width: 52px;
  height: 52px;
  border-radius: 20px;
  background-color: var(--black-5);
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--black-100);
}
