/** Shopify CDN: Minification failed

Line 248:19 Expected "}" to go with "{"

**/
/* ================================
   Bundle Starter Set Section
   Buddy Shop - Dawn Theme
   v3: シンプル版
================================ */

.bundle-section {
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
  padding: 24px 0;
}

.bundle-section__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ラベル */
.bundle-section__label {
  text-align: center;
  margin-bottom: 8px;
}

.bundle-section__label span {
  display: inline-block;
  background: #0d9488;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

/* タイトル */
.bundle-section__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
  white-space: nowrap;
}

.bundle-section__title span {
  color: #0d9488;
}

/* サブタイトル */
.bundle-section__subtitle {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-bottom: 0;
}

/* 説明文 */
.bundle-section__description {
  text-align: center;
  font-size: 13px;
  color: #444;
  line-height: 2;
  margin: 12px auto 20px;
  max-width: 480px;
  border-top: 1px solid #d1faf5;
  border-bottom: 1px solid #d1faf5;
  padding: 12px 0;
}

/* 商品表示エリア */
.bundle-products {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 16px;
}

.bundle-product-card {
  flex: 1;
  max-width: 165px;
  min-width: 0;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bundle-product-card a {
  display: block;
}

.bundle-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 6px;
  background: #f5f5f5;
}

.bundle-product-card__name {
  font-size: 10px;
  font-weight: 600;
  color: #333;
  margin-top: 6px;
  line-height: 1.3;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 商品価格 */
.bundle-product-card__price {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.bundle-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #0d9488;
  padding: 0;
  flex-shrink: 0;
}

/* 価格セクション */
.bundle-price-section {
  background: white;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.bundle-discount-badge {
  display: inline-block;
  background: #ef4444;
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(239,68,68,0.3);
  margin-bottom: 12px;
}

.bundle-price-comparison {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bundle-price-original,
.bundle-price-discounted {
  text-align: center;
  flex: 1;
}

.bundle-price-label {
  display: block;
  font-size: 10px;
  color: #999;
}

.bundle-price-label--accent {
  color: #ef4444;
  font-weight: 600;
  font-size: 11px;
}

.bundle-price-amount {
  display: block;
}

.bundle-price-amount--strike {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.bundle-price-amount--main {
  font-size: 26px;
  font-weight: 700;
  color: #0d9488;
}

.bundle-price-amount--main small {
  font-size: 12px;
  font-weight: 400;
}

.bundle-price-arrow {
  font-size: 20px;
  color: #0d9488;
  align-self: center;
}

/* CTAボタン */
.bundle-cta-button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(13,148,136,0.3);
  text-decoration: none;
  text-align: center;
}

.bundle-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13,148,136,0.4);
  color: white;
}

.bundle-cta-sub {
  font-size: 11px;
  color: #666;
  margin-top: 8px;
  text-align: center;
}

/* ================================
   Desktop対応 (600px以上)
================================ */
@media (min-width: 600px) {
  .bundle-section {