/* フライヤーページ CVR最適化 CSS */

/* ヒーローセクションの強化 */
.hero-badge {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.hero-badge span {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

.price-badge {
    background: #ff4444;
    color: white;
    font-size: 1.2em !important;
}

.delivery-badge {
    background: #00aa44;
    color: white;
}

.shipping-badge {
    background: #0066cc;
    color: white;
}

.hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 20px 0;
}

/* CTAボタンの強化 */
.cta-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.cta-primary {
    background: #ff4444 !important;
    border-color: #ff4444 !important;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

.cta-secondary {
    border: 2px solid #0066cc;
    color: #0066cc !important;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3); }
    50% { box-shadow: 0 6px 20px rgba(255, 68, 68, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3); }
}

/* 価格表示の強化 */
.price-highlight {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #ff4444;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    text-align: center;
}

.price-main {
    font-size: 2.5em;
    font-weight: bold;
    color: #ff4444;
    margin-bottom: 10px;
}

.price-main .currency {
    font-size: 0.7em;
}

.price-main .amount {
    font-size: 1em;
}

.price-main .unit {
    font-size: 0.6em;
    color: #666;
}

.price-note {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 15px;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.trust-item {
    font-size: 0.9em;
    color: #28a745;
    font-weight: 500;
}

/* バリュープロポジションの強化 */
.value-propositions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.value-prop {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.value-prop i {
    font-size: 2em;
    margin-bottom: 10px;
}

.value-prop strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.value-prop p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

/* CTAボタンの強化 */
.cta-pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button-primary .btn {
    background: #ff4444 !important;
    border-color: #ff4444 !important;
    font-size: 1.1em;
    font-weight: bold;
}

.cta-button-secondary .btn {
    border: 2px solid #6c757d;
    color: #6c757d !important;
}

/* 関連商品の強化 */
.related-item {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4444;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: bold;
}

.item-name {
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.item-price {
    color: #ff4444;
    font-weight: bold;
    font-size: 1.1em;
}

/* FAQ回答の強化 */
.enhanced-answer {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-left: 4px solid #007bff;
}

.answer-highlight {
    background: #e3f2fd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.order-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background: #007bff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 5px 0;
    color: #007bff;
    font-size: 1em;
}

.step-content p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

.cta-box {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* モバイル最適化 */
@media (max-width: 768px) {
    .hero-badge {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .price-main {
        font-size: 2em;
    }
    
    .value-propositions {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        flex-direction: column;
    }
    
    .cta-box .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .order-steps {
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

/* アニメーション効果 */
.zoom-box:hover .c-bnr {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* 信頼性指標の強化 */
.trust-indicators .trust-item:before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
}

/* 緊急性を訴求するサイドバーCTA */
.enhanced-cta-sidebar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.pulsing-cta {
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { 
        box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(255, 68, 68, 0.6);
        transform: scale(1.05);
    }
    100% { 
        box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
        transform: scale(1);
    }
}

.urgent-cta {
    text-decoration: none;
    color: white !important;
}

.urgent-badge {
    background: #fff;
    color: #ff4444;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
}

.cta-content {
    padding: 15px;
    text-align: center;
}

.cta-content p {
    margin: 0;
    color: white !important;
    font-weight: bold;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
}

.benefit {
    font-size: 0.8em;
    color: #fff;
    opacity: 0.9;
}

/* モバイル対応でサイドバーCTAを調整 */
@media (max-width: 768px) {
    .enhanced-cta-sidebar {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
    
    .pulsing-cta {
        border-radius: 10px;
    }
    
    .cta-content {
        padding: 12px;
    }
    
    .benefits {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
}