/* ================================================
   Plan Page Styles (matched to cafeyu.xyz/plan.html)
   ================================================ */

body {
    background: #fff;
}

.container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 2px solid #8b4513;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.plan-card {
    display: flex;
    flex-direction: column;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.plan-header {
    background: #8b4513;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.plan-header-kitchen {
    background: #6b8e23;
}

.plan-header-projector {
    background: #dc143c;
}

.plan-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.plan-subtitle {
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
    line-height: 1.2;
}

.plan-price-small {
    font-size: 18px;
    font-weight: 400;
}

.plan-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 30px 20px;
    background: #fff;
}

.plan-lead {
    margin: 0 0 20px;
    font-weight: 700;
}

.plan-features {
    list-style: none;
    margin-bottom: 20px;
}

.plan-features li {
    position: relative;
    padding: 10px 0 10px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: 700;
}

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

.reserve-button {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 15px;
    background: #8b4513;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-weight: 700;
}

.plan-card:nth-child(2) .reserve-button {
    background: #6b8e23;
}

.plan-card:nth-child(3) .reserve-button {
    background: #dc143c;
}

.reserve-button:hover {
    background: #654321;
}

.plan-card:nth-child(2) .reserve-button:hover {
    background: #5b7a1d;
}

.plan-card:nth-child(3) .reserve-button:hover {
    background: #b90f33;
}

.notes-section {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
}

.notes-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #8b4513;
}

.notes-section ul {
    list-style: none;
}

.notes-section li {
    position: relative;
    padding: 10px 0 10px 30px;
    line-height: 1.8;
}

.notes-section li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #8b4513;
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 28px;
    }
}
