.top-notice {
  margin-bottom: 16px;
}

.top-notice__inner {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  background: #f6f6f6;
  border: 1px solid #E5E5E5;
  overflow: hidden;
}

.top-notice__label {
  flex-shrink: 0;
  margin-right: 16px;
  padding-right: 16px;
  border-right: 1px solid #ddd;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

.top-notice__ticker {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 40px;
  overflow: hidden;
}

.top-notice__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding-right: 16px;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.top-notice__item:hover {
  color: #191919;
}

.top-notice__item.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transform: translateY(0);
}

.top-notice__date {
  flex-shrink: 0;
  color: #888;
}

.top-notice__title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 44px;
  height: 20px;
  padding: 0 8px;
  border-radius: 4px;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  transform-origin: center right;
  animation: notice-new-blink 1s ease-in-out infinite;
}

@keyframes notice-new-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    background: #e53935;
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
    background: #ff1744;
    box-shadow: 0 0 14px 4px rgba(255, 23, 68, 0.75);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-notice__item {
    transition: none;
    transform: none;
  }

  .notice-new-badge {
    animation: none;
    box-shadow: 0 0 8px 2px rgba(229, 57, 53, 0.5);
  }
}

.product .row-prod {
  margin-bottom: 20px;
}

.product .row-info {
  margin-left: -5px;
  margin-right: -5px;
}

.product .row-info .col {
  padding-left: 5px;
  padding-right: 5px;
}

.product .product-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product .product-item img {
  width: 100%;
}

.product .product-description {
  position: absolute;
  text-align: center;
  color: #fff;
}

.product .product-description h5 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.product .product-description .sub-title {
  padding-top: 40px;
  font-size: 25px;
}

.product .product-item-info {
  background: #f6f6f6;
  height: 108px;
  border: 1px solid #E5E5E5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333;
  line-height: 28px;
  font-weight: 500;
  font-size: 19.12px;

  a {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    text-decoration: none;
  }
  .small {
    font-size: 16.99px;
  }
  .thin {
    font-weight: 400;
  }
}

.product .brands {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product .brands-icon {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  font-size: 10px;
  color: #5a5a5a;
  font-weight: 500;
}
