/* 商品詳細ページスタイル */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 商品ヘッダー */
.product-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-image {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.price-display {
    font-size: 36px;
    color: #667eea;
    font-weight: bold;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #5a55d2;
}

/* 特徴セクション */
.features {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.features h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    margin-right: 10px;
}

/* 関連サービス */
.related-services {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
}

.related-services h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
}

.service-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-link {
    display: block;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-link:hover {
    background: #f0f0f0;
    border-color: #667eea;
    transform: translateY(-2px);
}

.service-link h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #667eea;
}

.service-link p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .product-header {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .product-info h1 {
        font-size: 24px;
    }
    
    .price-display {
        font-size: 28px;
    }
    
    .cta-button {
        display: block;
        text-align: center;
    }
    
    .service-links {
        grid-template-columns: 1fr;
    }
}