/* 商品縮圖樣式 */
.product-thumbnail {
    width: 49px;
    height: 49px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 圖片欄位 td padding */
.product-image-cell {
    padding: 5px 5px 5px 5px !important;
}

.product-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 預設圖片樣式（無法點擊） */
.product-thumbnail-placeholder {
    cursor: default;
    opacity: 0.6;
}

.product-thumbnail-placeholder:hover {
    transform: none;
    box-shadow: none;
}

/* 手機版卡片標題區域（含圖片） */
.mobile-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.mobile-card-image {
    flex-shrink: 0;
}

.mobile-card-header .mobile-card-title {
    flex: 1;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

/* Lightbox 自訂樣式 */
.lb-data .lb-caption {
    font-size: 14px;
    color: #fff;
}

.lb-data .lb-number {
    font-size: 12px;
    color: #ccc;
}
