/* ==========================================
   WHMCS OS Card Grid — Phox Theme
   ========================================== */

.whmcs-os-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin: 8px 0;
}

/* ---- კარტი ---- */
.whmcs-os-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  text-align: center;
  user-select: none;
}

.whmcs-os-card:hover {
  border-color: #a5b4fc;
  background: #f5f3ff;
}

.whmcs-os-card.selected {
  border-color: #6366f1;
  background: #eef2ff;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

/* ---- ხატულა ---- */
.whmcs-os-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whmcs-os-card-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* placeholder — SVG არ გვაქვს ამ OS-ისთვის */
.whmcs-os-card-icon.placeholder {
  background: #e5e7eb;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #6b7280;
}

/* ---- ტექსტი ---- */
.whmcs-os-card-label {
  font-size: 12px;
  color: #374151;
  line-height: 1.3;
  word-break: break-word;
}

.whmcs-os-card.selected .whmcs-os-card-label {
  color: #4338ca;
  font-weight: 500;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
  .whmcs-os-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
  }
  .whmcs-os-card-icon,
  .whmcs-os-card-icon img {
    width: 36px;
    height: 36px;
  }
}
