/* Modern Booking Plan List List Design */
:root {
    --primary-color: #ec7171;
    --text-color: #494949;
    --gray-bg: #f9f9f9;
    --card-bg: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-md: 12px;
    --radius-sm: 8px;
    --font-heading: 'Outfit', 'Noto Sans JP', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
}

.booking-plan-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-section-title {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    border-left: 5px solid var(--primary-color);
    padding-left: 16px;
    display: flex;
    align-items: center;
}

.plan-section-title i {
    color: var(--primary-color);
    margin-right: 12px;
}

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

.plan-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.plan-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.plan-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    /* Aspect ratio 5:3 */
    overflow: hidden;
}

.plan-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.plan-card:hover .plan-image {
    transform: scale(1.05);
}

.plan-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.plan-status-badge {
    display: inline-block;
    background-color: #6c757d;
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.plan-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.plan-details {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-location {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
}

.plan-location i {
    margin-right: 6px;
    color: var(--primary-color);
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-actions {
    padding: 0 24px 24px;
    display: flex;
    gap: 12px;
}

.btn-plan-action {
    flex: 1;
    display: inline-block;
    padding: 10px;
    text-align: center;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-secondary-action {
    background-color: #f0f0f0;
    color: #555;
    border: 1px solid #ddd;
}

.btn-secondary-action:hover {
    background-color: #e0e0e0;
}

.empty-state {
    padding: 60px;
    text-align: center;
    color: #888;
    background: #fcfcfc;
    border-radius: var(--radius-md);
    border: 2px dashed #ddd;
}