/**
 * ブランド詳細ページの公式サイトリンク用スタイル
 */
.official-site-link {
  margin: 1.5rem 0;
  text-align: center;
}

.brand-official-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.brand-official-link:hover {
  background-color: #eaeaea;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.brand-official-link svg {
  width: 16px;
  height: 16px;
  stroke: #666;
}

/* ブランドカテゴリー表示 */
.brand-categories {
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* アイテムカードのスタイル */
.fashion-item-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.fashion-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.item-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.item-thumbnail {
  position: relative;
  padding-top: 100%;
  background-color: #f8f8f8;
  overflow: hidden;
}

.item-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fashion-item-card:hover .item-thumbnail img {
  transform: scale(1.05);
}

.item-info {
  padding: 15px;
}

.item-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.5rem;
}

.item-price {
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.item-price small {
  font-size: 0.75rem;
  color: #666;
  margin-left: 5px;
  font-weight: normal;
}

.item-celebrity {
  font-size: 0.85rem;
  color: #666;
}

.celebrity-link {
  color: #9F3ED9;
  text-decoration: none;
}

.celebrity-link:hover {
  text-decoration: underline;
}

.no-items-message {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-top: 1rem;
}
