/* Statix Hosting Pricing Styles
   NOTE: Button styles moved to child theme style.css
   This file only contains card/table specific styles */

/* === Cards (intro pagina) === */
.statix-hosting-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.statix-hosting-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px 24px;
    position: relative;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.statix-hosting-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.statix-hosting-card.highlight {
    border-color: #0066cc;
    box-shadow: 0 4px 16px rgba(0,102,204,0.12);
}

.statix-hosting-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066cc;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.statix-hosting-card-img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}

.statix-hosting-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.statix-hosting-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
    flex-grow: 1;
    width: 100%;
}

.statix-hosting-price {
    text-align: center;
    margin: auto 0 12px;
    width: 100%;
}

.statix-hosting-price .price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
}

/* NOTE: Button styles are now in assets/css/statix-core.css (centralized) */

.statix-hosting-period {
    font-size: 11px;
    color: #888;
    text-align: center;
    margin: 8px 0 0;
    width: 100%;
}

/* === Specs Table === */
.statix-hosting-specs-wrap {
    margin: 40px 0;
}

.statix-hosting-specs-wrap h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.statix-hosting-specs-table-wrap {
    overflow-x: auto;
}

.statix-hosting-specs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.statix-hosting-specs-table th,
.statix-hosting-specs-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}

.statix-hosting-specs-table thead th {
    background: #f5f7f9;
    font-weight: 600;
    color: #333;
}

.statix-hosting-specs-table .price-row td {
    background: #f0f7fc;
    font-weight: 600;
}

.statix-hosting-specs-table .spec-price {
    font-size: 22px;
    color: #0066cc;
}

.statix-hosting-specs-table .action-row td {
    border-bottom: none;
    padding-top: 16px;
    padding-bottom: 4px;
}

.statix-btw-note {
    color: #777;
    font-size: 13px;
    margin-top: 10px;
}

/* Highlight column */
.statix-hosting-specs-table th.pkg-standaard,
.statix-hosting-specs-table td.pkg-standaard {
    background: #f0f7fc;
    font-weight: 500;
}

/* === Order Form === */
.statix-hosting-order {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
    margin: 40px 0;
    max-width: 600px;
}

.statix-hosting-order h2 {
    margin-top: 0;
    font-size: 22px;
}

.statix-hosting-order-form .statix-form-row {
    margin-bottom: 18px;
}

.statix-hosting-order-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.statix-hosting-order-form input,
.statix-hosting-order-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
}

.statix-hosting-order-form input:focus,
.statix-hosting-order-form select:focus {
    border-color: #2d5fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(45,95,255,0.15);
}

.statix-form-message {
    margin-top: 12px;
    padding: 12px;
    border-radius: 4px;
    display: none;
}

.statix-form-message.success {
    display: block;
    background: #e6f7e6;
    color: #2a7a2a;
    border: 1px solid #b8e0b8;
}

.statix-form-message.error {
    display: block;
    background: #fce8e8;
    color: #a52a2a;
    border: 1px solid #f0b0b0;
}

/* Responsive: only stack buttons on very small screens */
@media (max-width: 480px) {
    .statix-button-group,
    .statix-hosting-actions {
        flex-direction: column;
        gap: 12px;
    }
    .statix-button-group .statix-btn,
    .statix-hosting-actions .statix-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .statix-hosting-cards {
        grid-template-columns: 1fr;
    }
}
