/**
 * GAM Country Pricing — Book Format / Binding Cards CSS
 */

.gam-book-binding-selector {
    margin: 20px 0;
    padding: 15px;
    background: #fdfdfd;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.gam-binding-title {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

.gam-binding-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.gam-binding-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
}

.gam-binding-card:hover:not(.gam-card-disabled) {
    border-color: #94a3b8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gam-binding-card--selected {
    border-color: #2563eb !important;
    background-color: #f0f6ff !important;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.gam-card-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: #f8fafc;
    border-color: #e2e8f0;
}

.gam-card-format {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 6px;
}

.gam-card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 4px;
}

.gam-card-price del {
    color: #94a3b8;
    font-weight: 400;
    margin-right: 6px;
    font-size: 0.95rem;
}

.gam-card-status {
    font-size: 0.85rem;
    font-weight: 500;
}

.gam-status-available {
    color: #16a34a;
}

.gam-status-unavailable {
    color: #dc2626;
}

.gam-status-outofstock {
    color: #d97706;
}
