/* Hourly Booking - Pricing Block CSS */

.hb-pricing-block {
    --hb-primary: #6366f1;
    --hb-primary-light: rgba(99, 102, 241, 0.1);
    --hb-surface: #ffffff;
    --hb-text: #0f172a;
    --hb-text-light: #475569;
    --hb-border: #e2e8f0;
    --hb-radius: 16px;
    --hb-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--hb-text);
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: var(--hb-radius);
    text-align: center;
    max-width: 1100px;
    margin: 40px auto;
}

.hb-pricing-header {
    margin-bottom: 40px;
}

.hb-pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--hb-text);
    letter-spacing: -0.025em;
}

.hb-pricing-header p {
    font-size: 1.1rem;
    color: var(--hb-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.hb-hourly-highlight {
    background: var(--hb-primary-light);
    color: var(--hb-primary);
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin: 0 4px;
}

.hb-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.hb-package-card {
    background: var(--hb-surface);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    padding: 32px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.hb-package-card.popular {
    border: 2px solid var(--hb-primary);
    box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.2);
}

.hb-package-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hb-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hb-package-name {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.hb-package-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0;
    color: var(--hb-primary);
}

.hb-package-price span {
    font-size: 1rem;
    color: var(--hb-text-light);
    font-weight: 500;
}

.hb-package-features {
    margin: 20px 0 30px;
    width: 100%;
    list-style: none;
    padding: 0;
}

.hb-package-features li {
    padding: 8px 0;
    color: var(--hb-text-light);
    border-bottom: 1px solid var(--hb-border);
    font-size: 0.95rem;
}

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

.hb-package-save {
    color: #22c55e;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 5px;
}

.hb-pricing-footer {
    margin-top: 40px;
    color: var(--hb-text-light);
    font-size: 0.9rem;
}

.hb-pricing-footer a {
    color: var(--hb-primary);
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 640px) {
    .hb-pricing-header h2 {
        font-size: 1.75rem;
    }
}
