.qatarat-pack-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
    margin: 4px 0 12px;
    direction: rtl;
}
.qatarat-pack-choice {
    min-height: 52px;
    padding: 10px 12px;
    border: 1px solid #d9e8ee;
    border-radius: 14px;
    background: #fff;
    color: #1d3f74;
    font: inherit;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}
.qatarat-pack-choice:hover:not(:disabled),
.qatarat-pack-choice:focus-visible {
    border-color: #2394a5;
    box-shadow: 0 0 0 3px rgba(35,148,165,.12);
    outline: 0;
    transform: translateY(-1px);
}
.qatarat-pack-choice.is-selected {
    border-color: #2394a5;
    background: linear-gradient(135deg, #eefbfe, #f7fbff);
    box-shadow: inset 0 0 0 1px #2394a5, 0 6px 16px rgba(29,63,116,.09);
    color: #173965;
}
.qatarat-pack-choice.is-disabled,
.qatarat-pack-choice:disabled {
    opacity: .42;
    cursor: not-allowed;
    text-decoration: line-through;
}
.qatarat-pack-select-enhanced {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    clip-path: inset(50%) !important;
}
.qatarat-quantity-label {
    display: block;
    margin: 8px 0 6px;
    color: #1d3f74;
    font-weight: 800;
}
@media (max-width: 600px) {
    .qatarat-pack-choice-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .qatarat-pack-choice { min-height: 48px; padding: 8px; font-size: 13px; border-radius: 12px; }
}
