/* Salon LP Specific Styles */

/* Campaign Price Highlight */
.campaign-price {
    color: var(--danger-red);
    font-size: 2.5em;
    /* Larger than normal */
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.3);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.2em;
    margin-right: 1rem;
}

.price-card.campaign {
    border: 2px solid var(--danger-red);
    background: rgba(255, 71, 87, 0.05);
    position: relative;
    overflow: hidden;
}

.campaign-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--danger-red);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Story Section enhancements */
.story-vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.story-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--bg-section);
    border: 1px solid var(--glass-border);
}

.story-card.silent {
    border-left: 4px solid var(--text-gray);
}

.story-card.active {
    border-left: 4px solid var(--accent-gold);
    background: rgba(0, 242, 255, 0.05);
}

.concierge-demo {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-family: monospace;
}

.chat-bubble {
    background: var(--secondary-dark);
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    max-width: 80%;
}

.chat-bubble.ai {
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: var(--accent-gold);
    margin-right: auto;
    border-bottom-left-radius: 2px;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .story-vs-grid {
        grid-template-columns: 1fr;
    }

    /* Hero Stats - スマホ対応 */
    .hero .stats-row {
        flex-direction: row !important;
        justify-content: center;
        gap: 2rem;
    }

    .hero .stat-item {
        text-align: center;
    }

    .hero .stat-number {
        font-size: 2.5rem !important;
    }

    .hero .stat-label {
        font-size: 0.9rem !important;
    }
}

/* Hero Background Override */
.hero {
    background: url('../media/salon_happy_customers_1.png') no-repeat center center/cover;
}