/*
Theme Name: WellV Theme 1.1
Theme URI: https://wellv.co.jp
Author: WellV
Author URI: https://wellv.co.jp
Description: WellV公式テーマ - 最新版
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wellv
*/

/* Splash */
#wellv-splash {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fafbfc;
  transition:
    opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0s linear 1.2s;
}

#wellv-splash.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.wellv-splash-logo {
  opacity: 0;
  transform: translateY(16px);
  animation: wellvSplashIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes wellvSplashIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wellv-splash-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.wellv-splash-rule {
  width: 48px;
  height: 3px;
  margin-top: 1.5rem;
  background: linear-gradient(90deg, #f5caca, #9ecad8);
  opacity: 0;
  animation: wellvSplashIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s forwards;
}

.wellv-splash-caption {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #5c5c5c;
  opacity: 0;
  animation: wellvSplashIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s forwards;
}

/* Page hero (shop) */
.shop-hero {
  background: linear-gradient(135deg, #fffbe8 0%, #fff5f5 30%, #f0f8fa 70%, #e8f4f8 100%);
  padding: 104px 20px 48px;
  text-align: center;
}

.shop-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.shop-hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5caca 0%, #ff9999 50%, #f5caca 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}

/* Shop / billing */
.wellv-shop.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.wellv-shop-notice {
  background: #fff8e6;
  border: 1px solid #f0d78c;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.wellv-shop-section {
  margin-bottom: 48px;
}

.wellv-shop-section h2 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #333;
}

.wellv-shop-lead {
  color: #666;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.wellv-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.wellv-shop-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 640px;
}

.wellv-shop-card {
  position: relative;
  background: #fff;
  border: 2px solid #e2e6ea;
  border-radius: 14px;
  padding: 20px 18px 18px;
  text-align: center;
}

.wellv-shop-card.is-selected {
  border-color: #7ab8cc;
  box-shadow: 0 0 0 3px rgba(122, 184, 204, 0.25);
}

.wellv-shop-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: linear-gradient(135deg, #e8b3b3, #7ab8cc);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.wellv-shop-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.wellv-shop-amount {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 0 4px;
  color: #1a1a1a;
}

.wellv-shop-amount small {
  font-size: 0.75rem;
  font-weight: 700;
}

.wellv-shop-price {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: #7ab8cc;
}

.wellv-shop-price small {
  font-size: 0.75rem;
  font-weight: 600;
}

.wellv-shop-note {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 16px;
  min-height: 1.2em;
}

.wellv-shop-buy {
  display: inline-block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #e8b3b3, #7ab8cc);
}

.wellv-shop-buy:hover {
  opacity: 0.92;
}

.wellv-shop-legal {
  font-size: 0.88rem;
  border-top: 1px solid #e2e6ea;
  padding-top: 32px;
  color: #666;
}

.wellv-shop-legal h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 12px;
}

.wellv-shop-legal ul {
  margin: 0 0 1rem 1.25rem;
}

.wellv-shop-legal a {
  color: #7ab8cc;
  text-decoration: none;
}

.wellv-shop-legal a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .shop-hero {
    padding: 104px 20px 36px;
  }

  .shop-hero h1 {
    font-size: 2rem;
  }

  .wellv-shop.content {
    padding: 32px 20px 60px;
  }
}
