/* ===========================
   誕生星ブレスレット詳細ページ専用CSS
   =========================== */

/* ヒーローセクション */
.birthday-hero {
    position: relative;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.birthday-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle fill="rgba(255,255,255,0.1)" cx="200" cy="150" r="100"/><circle fill="rgba(255,255,255,0.05)" cx="900" cy="400" r="150"/><circle fill="rgba(255,255,255,0.08)" cx="600" cy="300" r="120"/></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.birthday-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-label {
    display: inline-block;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-weight: 500;
}

.birthday-hero .hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.birthday-hero .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 300;
}

.birthday-hero .hero-image {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.birthday-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* メッセージセクション */
.message-section {
    padding: 100px 0;
}

.section-light {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.message-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
}

.highlight-box {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-top: 50px;
    border-left: 5px solid var(--primary-color);
}

.highlight-message {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* 品質セクション */
.quality-section {
    padding: 100px 0;
    background: white;
}

.quality-content {
    max-width: 1000px;
    margin: 0 auto;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.quality-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f4ff 0%, #faf5ff 100%);
    border-radius: 15px;
    transition: var(--transition);
}

.quality-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.quality-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quality-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.quality-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.recommend-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    padding: 50px 40px;
    border-radius: 15px;
    margin-top: 60px;
    border-left: 5px solid var(--secondary-color);
}

.recommend-box h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.recommend-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.recommend-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.recommend-list i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* 作成プロセスセクション */
.creation-section {
    padding: 100px 0;
}

.creation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.creation-definition {
    background: white;
    background-image: url('../images/horoscope-bg.png');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin: 50px 0;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.definition-icon {
    flex-shrink: 0;
}

.definition-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.definition-text {
    position: relative;
    z-index: 1;
    max-width: 60%;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 10px;
}

.definition-text h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.definition-main {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
}

.celestial-bodies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.celestial-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
}

.creation-method {
    margin-top: 60px;
}

.creation-method h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.method-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.8;
}

.method-steps {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.creation-apply-button {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.method-step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: var(--transition);
}

.method-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* 願いのセクション */
.wishes-section {
    padding: 100px 0;
    background: white;
}

.wishes-content {
    max-width: 1000px;
    margin: 0 auto;
}

.wishes-explanation {
    background: linear-gradient(135deg, #f8f4ff 0%, #faf5ff 100%);
    padding: 50px 40px;
    border-radius: 15px;
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 50px 0;
}

.wishes-text {
    flex: 1;
}

.wishes-text .lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.wishes-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.wishes-icon {
    flex-shrink: 0;
}

.wishes-icon i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.custom-wishes {
    margin-top: 60px;
}

.custom-wishes h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.wishes-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.wish-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.wish-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.wish-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.wish-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.wish-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* 料金セクション */
.pricing-section {
    padding: 100px 0;
}

.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.pricing-note {
    max-width: 700px;
    margin: 30px auto 50px;
}

.pricing-note p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.price-range {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.price-item {
    background: white;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.price-item.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-item h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-desc {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-contact {
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* CTAセクション */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.store-info-mini {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.store-info-mini p {
    margin: 10px 0;
    font-size: 1rem;
    opacity: 0.9;
}

.store-info-mini i {
    margin-right: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 968px) {
    .birthday-hero .hero-title {
        font-size: 2.5rem;
    }

    .birthday-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .creation-definition {
        background-size: 50%;
        background-position: bottom right;
        padding: 40px 30px;
    }
    
    .definition-text {
        max-width: 100%;
    }

    .wishes-explanation {
        flex-direction: column;
    }

    .wishes-icon {
        order: -1;
    }
}

@media (max-width: 640px) {
    .birthday-hero {
        padding: 80px 0 60px;
    }

    .birthday-hero .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .message-section,
    .quality-section,
    .creation-section,
    .wishes-section,
    .pricing-section,
    .cta-section {
        padding: 60px 0;
    }

    .highlight-box,
    .recommend-box {
        padding: 30px 20px;
    }

    .creation-definition {
        padding: 30px 20px 200px;
        background-size: 85%;
        background-position: center bottom;
        min-height: auto;
    }
    
    .definition-text {
        background: rgba(255, 255, 255, 0.97);
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .definition-text h3 {
        font-size: 1.5rem;
    }
    
    .definition-main {
        font-size: 1rem;
    }

    .method-step {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .recommend-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .creation-definition {
        padding: 25px 15px 180px;
        background-size: 90%;
        background-position: center bottom;
    }
    
    .definition-text {
        padding: 15px;
    }
    
    .definition-text h3 {
        font-size: 1.3rem;
    }
    
    .definition-main {
        font-size: 0.95rem;
    }
}