/* ============================================================================
   订单列表图片样式 Order Item Images
   ============================================================================ */

/* 🖼️ 订单项目图片容器 */
.order-item-image-container {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-shrink: 0;
  position: relative;
}

.order-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  background: transparent;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.order-item-image:hover {
  transform: scale(1.1);
}

.order-item-image-placeholder {
  font-size: 18px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(240, 114, 122, 0.1);
  border-radius: 6px;
}

/* 订单表格图片列样式 */
.order-image {
  width: 50px !important;
  max-width: 50px !important;
  min-width: 50px !important;
  padding: 6px !important;
  text-align: center;
  vertical-align: middle;
}

#mainBody .details-table th.order-image,
#mainBody .details-table td.order-image {
  width: 50px !important;
  max-width: 50px !important;
  min-width: 50px !important;
  text-align: center;
  padding: 6px !important;
}

/* Sushi Koi主题下的订单图片样式 */
body.theme-sushi-koi .order-item-image-container {
  border: none;
  background: transparent;
  box-shadow: none;
}

body.theme-sushi-koi .order-item-image-placeholder {
  color: var(--accent);
  background: rgba(226, 81, 92, 0.15);
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
  .order-item-image-container {
    width: 36px;
    height: 36px;
  }

  .order-image {
    width: 45px !important;
    max-width: 45px !important;
    min-width: 45px !important;
    padding: 4px !important;
  }

  .order-item-image-placeholder {
    font-size: 16px;
  }
}

/* ============================================================================
   End of Order Item Images
   ============================================================================ */
