/* =====================================================
   FORM CLAIM ICONS - formClaim_icons.css
   🔧 FIX: ประกาศ font-family ให้ Material Symbols Outlined
   เพื่อป้องกันไม่ให้ถูก override โดย Kanit font
   ===================================================== */

/* ================= MATERIAL SYMBOLS BASE ================= */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga';
}

/* ================= PRODUCT GRID ICONS ================= */
.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: transform 0.2s ease;
  /* ไม่ใส่ background สี — ให้โปร่งใส เห็นแค่ไอคอน */
  background: transparent;
}

.product-icon .material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-size: 32px;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Hover effect */
.product-item:hover .product-icon {
  transform: scale(1.12);
}

/* Active state — ไอคอนเป็นสีขาว */
.product-item.active .product-icon .material-symbols-outlined {
  color: #fff !important;
}

/* ================= PRODUCT NAME ================= */
.product-name {
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-secondary, #3d6e6a);
  margin-top: 2px;
}

.product-item.active .product-name {
  color: #fff;
}

/* ================= CUSTOM ITEM (อื่นๆ) ================= */
.product-item-custom {
  border-style: dashed;
  border-color: var(--text-light, #a0bfbc);
}

.product-item-custom:hover {
  border-style: solid;
  border-color: var(--teal-400, #3FB7AE);
}

/* ================= SECTION TITLE ICONS ================= */
.section-title .material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-size: 20px;
  vertical-align: middle;
}