/* 1. คอนเทนเนอร์หลัก (สำคัญสำหรับ position: relative) */
.productDisplayArea {
  position: relative;
  min-height: 200px; 
}

/* 2. Overlay (หน้าจอขาวโปร่งแสงคลุมเต็ม) */
.loading-overlay {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* สีขาวโปร่งแสง */
  z-index: 9999;
  
  /* จัดให้อยู่กึ่งกลางแนวตั้งและแนวนอน */
  display: flex;
  flex-direction: column; /* จัดองค์ประกอบให้อยู่ในแนวตั้ง */
  justify-content: center;
  align-items: center;
}

/* 3. Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db; /* สีฟ้า */
  animation: spin 1s linear infinite;
  margin-bottom: 10px; 
}

/* 4. Animation Keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}