/* ========================================
   CTA セクション（おすすめ商品）スタイル
   ======================================== */

.cta-section {
  margin: 60px 0;
  padding: 40px;
  background: linear-gradient(135deg, #fff5f7 0%, #ffe8f0 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(255, 105, 180, 0.1);
}

.cta-header {
  text-align: center;
  margin-bottom: 40px;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.cta-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
  border-radius: 2px;
}

.cta-description {
  font-size: 16px;
  color: #666;
  margin-top: 20px;
  line-height: 1.8;
}

/* 商品グリッド */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

/* 商品カード */
.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.2);
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #ff1493;
  margin-bottom: 16px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1;
}

.product-features li {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff69b4;
  font-weight: 700;
}

.product-action {
  margin-top: auto;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff1493 0%, #c71585 100%);
  box-shadow: 0 6px 16px rgba(255, 20, 147, 0.4);
  transform: translateY(-2px);
}

/* CTAフッター */
.cta-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.disclaimer {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .cta-section {
    padding: 30px 20px;
    margin: 40px 0;
  }

  .cta-title {
    font-size: 22px;
  }

  .cta-description {
    font-size: 14px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image {
    height: 180px;
  }

  .product-name {
    font-size: 16px;
  }

  .product-price {
    font-size: 20px;
  }

  .product-features li {
    font-size: 13px;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 20px 15px;
    margin: 30px 0;
  }

  .cta-title {
    font-size: 20px;
  }

  .product-image {
    height: 160px;
  }
}

/* ダークモード対応（オプション） */
@media (prefers-color-scheme: dark) {
  .cta-section {
    background: linear-gradient(135deg, #2a1a1f 0%, #3d1a2a 100%);
  }

  .cta-title {
    color: #ffffff;
  }

  .cta-description {
    color: #cccccc;
  }

  .product-card {
    background: #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }

  .product-card:hover {
    box-shadow: 0 8px 24px rgba(255, 105, 180, 0.3);
  }

  .product-name {
    color: #ffffff;
  }

  .product-features li {
    color: #cccccc;
  }

  .disclaimer {
    color: #888888;
  }

  .cta-footer {
    border-top-color: rgba(255, 105, 180, 0.3);
  }
}
